|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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 . |
|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |