Example usage for Java java.security.cert X509CRL fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | equals(Object other) Compares this CRL for equality with the given object. |
Class> | getClass() Returns the runtime class of this Object . |
Set | getCriticalExtensionOIDs() 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. |
Principal | getIssuerDN() Denigrated, replaced by #getIssuerX500Principal() . |
X500Principal | getIssuerX500Principal() Returns the issuer (issuer distinguished name) value from the CRL as an X500Principal . |
Date | getNextUpdate() Gets the nextUpdate date from the CRL. |
X509CRLEntry | getRevokedCertificate(BigInteger serialNumber) Gets the CRL entry, if any, with the given certificate serialNumber. |
X509CRLEntry | getRevokedCertificate(X509Certificate certificate) Get the CRL entry, if any, for the given certificate. |
Set extends X509CRLEntry> | getRevokedCertificates() Gets all the entries from this CRL. |
String | getSigAlgName() 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. |
Date | getThisUpdate() Gets the thisUpdate date from the CRL. |
String | getType() Returns the type of this CRL. |
int | getVersion() Gets the version (version number) value from the CRL. |
boolean | isRevoked(Certificate cert) Checks whether the given certificate is on this CRL. |
String | toString() Returns a string representation of this CRL. |
void | verify(PublicKey key) Verifies that this CRL was signed using the private key that corresponds to the given public key. |
void | verify(PublicKey key, String sigProvider) Verifies that this CRL was signed using the private key that corresponds to the given public key. |
void | verify(PublicKey key, Provider sigProvider) Verifies that this CRL was signed using the private key that corresponds to the given public key. |