Java java.security.cert X509CRL fields, constructors, methods, implement or subclass

Example usage for Java java.security.cert X509CRL fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.security.cert X509CRL.

The text is from its open source code.

Method

booleanequals(Object other)
Compares this CRL for equality with the given object.
ClassgetClass()
Returns the runtime class of this Object .
SetgetCriticalExtensionOIDs()
Gets a Set of the OID strings for the extension(s) marked CRITICAL in the certificate/CRL managed by the object implementing this interface.
byte[]getEncoded()
Returns the ASN.1 DER-encoded form of this CRL.
byte[]getExtensionValue(String oid)
Gets the DER-encoded OCTET string for the extension value (extnValue) identified by the passed-in oid String.
PrincipalgetIssuerDN()
Denigrated, replaced by #getIssuerX500Principal() .
X500PrincipalgetIssuerX500Principal()
Returns the issuer (issuer distinguished name) value from the CRL as an X500Principal .
DategetNextUpdate()
Gets the nextUpdate date from the CRL.
X509CRLEntrygetRevokedCertificate(BigInteger serialNumber)
Gets the CRL entry, if any, with the given certificate serialNumber.
X509CRLEntrygetRevokedCertificate(X509Certificate certificate)
Get the CRL entry, if any, for the given certificate.
SetgetRevokedCertificates()
Gets all the entries from this CRL.
StringgetSigAlgName()
Gets the signature algorithm name for the CRL signature algorithm.
byte[]getSignature()
Gets the signature value (the raw signature bits) from the CRL.
byte[]getTBSCertList()
Gets the DER-encoded CRL information, the tbsCertList from this CRL.
DategetThisUpdate()
Gets the thisUpdate date from the CRL.
StringgetType()
Returns the type of this CRL.
intgetVersion()
Gets the version (version number) value from the CRL.
booleanisRevoked(Certificate cert)
Checks whether the given certificate is on this CRL.
StringtoString()
Returns a string representation of this CRL.
voidverify(PublicKey key)
Verifies that this CRL was signed using the private key that corresponds to the given public key.
voidverify(PublicKey key, String sigProvider)
Verifies that this CRL was signed using the private key that corresponds to the given public key.
voidverify(PublicKey key, Provider sigProvider)
Verifies that this CRL was signed using the private key that corresponds to the given public key.