Name

Class javax.security.cert.X509Certificate

Synopsis

This class represents an X509 Certificate for JSSE. To convert between this class and the java.security.cert.X509Certificate class, obtain the encoded bytes of this class and give them to a CertificateFactory object.

Class Definition

public abstract class javax.security.cert.X509Certificate
    extends javax.security.cert.Certificate {

    // Constructors
    public X509Certificate(  );

    // Class Methods
    public static final X509Certificate getInstance(byte[]);
    public static final X509Certificate getInstance(InputStream);

    // Instance Methods
    public abstract void checkValidity(  );
    public abstract void checkValidity(Date);
    public abstract Principal getIssuerDN(  );
    public abstract Date getNotAfter(  );
    public abstract Date getNotBefore(  );
    public abstract BigInteger getSerialNumber(  );
    public abstract String getSigAlgName(  );
    public abstract String getSigAlgOID(  );
    public abstract byte[] getSigAlgParams(  );
    public abstract Principal getSubjectDN(  );
    public abstract int getVersion(  );
}

See also

java.security.cert.X509Certificate

Get Java Security, 2nd Edition 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.