May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class java.security.cert.X509CRL
A Certificate Revocation List (CRL) is a list of certificates whose
keys are no longer valid. This class represents CRLs as defined in
the X.509 standard. If you have a CRL file that you would like to
examine, you can construct an X509CRL object
from the file using one of the getInstance( )
methods. A CRL, just like a certificate, has an internal signature
that protects its integrity. To verify the integrity of the CRL
itself, call one of the verify( ) methods with
the issuer’s public key. To find out if a particular
certificate is revoked, call the isRevoked( )
method with the certificate’s serial number.
public abstract class java.security.cert.X509CRL extends java.security.cert.CRL implements java.security.cert.X509Extension { // Constructors protected X509CRL( ); // Instance Methods public boolean equals(Object); public abstract Set getCriticalExtensionOIDs( ); public abstract byte[] getEncoded( ); public abstract byte[] getExtensionValue(String); public abstract Principal getIssuerDN( ); public abstract Date getNextUpdate( ); public abstract Set getNonCriticalExtensionOIDs( ); public abstract X509CRLEntry getRevokedCertificate(BigInteger); public abstract Set getRevokedCertificates( ); public abstract String getSigAlgName( ); public abstract String getSigAlgOID( ); public abstract byte[] getSigAlgParams( ); public abstract byte[] getSignature( ); public abstract byte[] getTBSCertList( ); public abstract Date getThisUpdate( ...Read now
Unlock full access