Class PemReader

java.lang.Object
java.io.Reader
java.io.BufferedReader
org.bouncycastle.util.io.pem.PemReader
All Implemented Interfaces:
Closeable, AutoCloseable, Readable

public class PemReader extends BufferedReader
A generic PEM reader, based on the format outlined in RFC 1421
  • Field Details

    • LAX_PEM_PARSING_SYSTEM_PROPERTY_NAME

      public static final String LAX_PEM_PARSING_SYSTEM_PROPERTY_NAME
      See Also:
  • Constructor Details

    • PemReader

      public PemReader(Reader reader)
  • Method Details

    • readPemObject

      public PemObject readPemObject() throws IOException
      Read the next PEM object as a blob of raw data with header information.
      Returns:
      the next object in the stream, null if no objects left.
      Throws:
      IOException - in case of a parse error.