JavaTM 2 Platform
Standard Edition

Uses of Class
java.security.cert.CertificateException

Packages that use CertificateException
java.security Provides the classes and interfaces for the security framework. 
java.security.cert Provides classes and interfaces for parsing and managing certificates. 
 

Uses of CertificateException in java.security
 

Methods in java.security that throw CertificateException
abstract  void KeyStoreSpi.engineStore(OutputStream stream, char[] password)
          Stores this keystore to the given output stream, and protects its integrity with the given password.
abstract  void KeyStoreSpi.engineLoad(InputStream stream, char[] password)
          Loads the keystore from the given input stream.
 void KeyStore.store(OutputStream stream, char[] password)
          Stores this keystore to the given output stream, and protects its integrity with the given password.
 void KeyStore.load(InputStream stream, char[] password)
          Loads this KeyStore from the given input stream.
 

Uses of CertificateException in java.security.cert
 

Subclasses of CertificateException in java.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 java.security.cert that throw CertificateException
abstract  Certificate CertificateFactorySpi.engineGenerateCertificate(InputStream inStream)
          Generates a certificate object and initializes it with the data read from the input stream inStream.
abstract  Collection CertificateFactorySpi.engineGenerateCertificates(InputStream inStream)
          Returns a (possibly empty) collection view of the certificates read from the given input stream inStream.
abstract  void Certificate.verify(PublicKey key)
          Verifies that this certificate was signed using the private key that corresponds to the specified public key.
abstract  void Certificate.verify(PublicKey key, String sigProvider)
          Verifies that this certificate was signed using the private key that corresponds to the specified public key.
static CertificateFactory CertificateFactory.getInstance(String type)
          Generates a certificate factory object that implements the specified certificate type.
static CertificateFactory CertificateFactory.getInstance(String type, String provider)
          Generates a certificate factory object for the specified certificate type from the specified provider.
 Certificate CertificateFactory.generateCertificate(InputStream inStream)
          Generates a certificate object and initializes it with the data read from the input stream inStream.
 Collection CertificateFactory.generateCertificates(InputStream inStream)
          Returns a (possibly empty) collection view of the certificates read from the given input stream inStream.
 


JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.