Uses of Class
javax.security.cert.CertificateException

Packages that use CertificateException
com.ibm.security.cert   
javax.security.cert   
 

Uses of CertificateException in com.ibm.security.cert
 

Methods in com.ibm.security.cert that throw CertificateException
 void X509V1CertImpl.verify(java.security.PublicKey key)
          Throws an exception if the certificate was not signed using the verification key provided.
 void X509V1CertImpl.verify(java.security.PublicKey key, java.lang.String sigProvider)
          Throws an exception if the certificate was not signed using the verification key provided.
 

Constructors in com.ibm.security.cert that throw CertificateException
X509V1CertImpl.X509V1CertImpl(byte[] certData)
          Unmarshals a certificate from its encoded form, parsing the encoded bytes.
X509V1CertImpl.X509V1CertImpl(java.io.InputStream in)
          unmarshals an X.509 certificate from an input stream.
 

Uses of CertificateException in javax.security.cert
 

Subclasses of CertificateException in javax.security.cert
 interface CertificateEncodingException
          Certificate Encoding Exception.
 interface CertificateExpiredException
          Certificate Expired Exception.
 interface CertificateNotYetValidException
          Certificate is not yet valid exception.
 interface CertificateParsingException
          Certificate Parsing Exception.
 

Methods in javax.security.cert that throw CertificateException
abstract  void Certificate.verify(java.security.PublicKey key)
          Verifies that this certificate was signed using the private key that corresponds to the specified public key.
abstract  void Certificate.verify(java.security.PublicKey key, java.lang.String sigProvider)
          Verifies that this certificate was signed using the private key that corresponds to the specified public key.
static X509Certificate X509Certificate.getInstance(java.io.InputStream inStream)
          Instantiates an X509Certificate object, and initializes it with the data read from the input stream inStream.
static X509Certificate X509Certificate.getInstance(byte[] certData)
          Instantiates an X509Certificate object, and initializes it with the specified byte array.