KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > security > cert > Certificate

javax.security.cert
Class Certificate

java.lang.Object
  extended by javax.security.cert.Certificate
Direct Known Subclasses:
X509Certificate
See Also:
Source Code

public Certificate()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean equals(Object other)
See Also:
Hashtable, Object.hashCode()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract byte[] getEncoded()
                           throws CertificateEncodingException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract PublicKey getPublicKey()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract String toString()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void verify(PublicKey key)
                     throws CertificateException,
                            NoSuchAlgorithmException,
                            InvalidKeyException,
                            NoSuchProviderException,
                            SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void verify(PublicKey key,
                            String sigProvider)
                     throws CertificateException,
                            NoSuchAlgorithmException,
                            InvalidKeyException,
                            NoSuchProviderException,
                            SignatureException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags