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 | Class and Description |
---|---|
class |
CertificateEncodingException
Certificate Encoding Exception.
|
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.
|
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,
java.lang.String sigProvider)
Verifies that this certificate was signed using the private key that corresponds to the specified public key.
|