Name

Class java.security.cert.RevokedCertificate

Description

A RevokedCertificate represents a certificate whose contained key is no longer safe to use. Instances of this class are returned by X509CRL’s getRevokedCertificate() method. You can examine the certificate’s revocation date and X.509 extensions.

Class Definition

public abstract class java.security.cert.RevokedCertificate
  extends java.lang.Object
  implements java.security.cert.X509Extension {

  // Constructors
  public RevokedCertificate();

  // Instance Methods
  public abstract Set getCriticalExtensionOIDs();
  public abstract byte[] getExtensionValue(String);
  public abstract Set getNonCriticalExtensionOIDs();
  public abstract Date getRevocationDate();
  public abstract BigInteger getSerialNumber();
  public abstract boolean hasExtensions();
  public abstract String toString();
}

See Also

Certificate, X509CRL, X509Extension

Get Java Cryptography now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.