May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.security.cert.Certificate
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.
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);
}
java.security.cert.Certificate
|
Read now
Unlock full access