Package | Description |
---|---|
java.security |
Contains core language classes related to permission management.
|
java.security.cert |
Contains classes for certificate management.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
KeyStoreSpi.engineLoad(java.io.InputStream stream,
char[] password)
Loads the keystore from the given input stream.
|
void |
KeyStore.load(java.io.InputStream stream,
char[] password)
Loads this KeyStore from the given input stream.
|
Modifier and Type | Method and Description |
---|---|
abstract Certificate |
CertificateFactorySpi.engineGenerateCertificate(java.io.InputStream inStream)
Generates a certificate object and initializes it with
the data read from the input stream
inStream . |
Certificate |
CertificateFactory.generateCertificate(java.io.InputStream inStream)
Generates a certificate object and initializes it with
the data read from the input stream
inStream . |
static CertificateFactory |
CertificateFactory.getInstance(java.lang.String type)
Returns a certificate factory object that implements the
specified certificate type.
|