Java org.bouncycastle.cert X509CRLHolder fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.cert X509CRLHolder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.cert X509CRLHolder.

The text is from its open source code.

Constructor

X509CRLHolder(byte[] crlEncoding)
Create a X509CRLHolder from the passed in bytes.
X509CRLHolder(InputStream crlStream)
Create a X509CRLHolder from the passed in InputStream.
X509CRLHolder(CertificateList x509CRL)
Create a X509CRLHolder from the passed in ASN.1 structure.

Method

byte[]getEncoded()
Return the ASN.1 encoding of this holder's CRL.
ExtensiongetExtension(ASN1ObjectIdentifier oid)
Look up the extension associated with the passed in OID.
ListgetExtensionOIDs()
Returns a list of ASN1ObjectIdentifier objects representing the OIDs of the extensions contained in this holder's CRL.
X500NamegetIssuer()
Return the issuer of this holder's CRL.
booleanisSignatureValid(ContentVerifierProvider verifierProvider)
Validate the signature on the CRL.
CertificateListtoASN1Structure()
Return the underlying ASN.1 structure for the CRL in this holder.