Class X509CRLParser

java.lang.Object
org.bouncycastle.x509.X509StreamParserSpi
org.bouncycastle.jce.provider.X509CRLParser

public class X509CRLParser extends org.bouncycastle.x509.X509StreamParserSpi
  • Constructor Details

    • X509CRLParser

      public X509CRLParser()
  • Method Details

    • engineInit

      public void engineInit(InputStream in)
      Description copied from class: org.bouncycastle.x509.X509StreamParserSpi
      Initializes this stream parser with the input stream.
      Specified by:
      engineInit in class org.bouncycastle.x509.X509StreamParserSpi
      Parameters:
      in - The input stream.
    • engineRead

      public Object engineRead() throws org.bouncycastle.x509.util.StreamParsingException
      Description copied from class: org.bouncycastle.x509.X509StreamParserSpi
      Returns the next X.509 object of the type of this SPI from the given input stream.
      Specified by:
      engineRead in class org.bouncycastle.x509.X509StreamParserSpi
      Returns:
      the next X.509 object in the stream or null if the end of the stream is reached.
      Throws:
      org.bouncycastle.x509.util.StreamParsingException - if the object cannot be created from input stream.
    • engineReadAll

      public Collection engineReadAll() throws org.bouncycastle.x509.util.StreamParsingException
      Description copied from class: org.bouncycastle.x509.X509StreamParserSpi
      Returns all X.509 objects of the type of this SPI from the given input stream.
      Specified by:
      engineReadAll in class org.bouncycastle.x509.X509StreamParserSpi
      Returns:
      A collection of all X.509 objects in the input stream or null if the end of the stream is reached.
      Throws:
      org.bouncycastle.x509.util.StreamParsingException - if an object cannot be created from input stream.