Name

Class javax.security.cert.Certificate

Synopsis

This class represents a generic certificate within JSSE. To convert between this class and the java.security.cert.Certificate class, obtain the encoded bytes of this certificate and give them to a CertificateFactory object.

Class Definition

public abstract class javax.security.cert.Certificate
    extends java.lang.Object {

    // Constructors
    public Certificate(  );

    // Instance Methods
    public boolean equals(Object);
    public abstract byte[] getEncoded(  );
    public abstract PublicKey getPublicKey(  );
    public int hashCode(  );
    public abstract String toString(  );
    public abstract void verify(PublicKey, String);
    public abstract void verify(PublicKey);
}

See also

java.security.cert.Certificate

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.