| Package | Description |
|---|---|
| java.security |
Provides the classes and interfaces for the security framework.
|
| java.security.cert |
Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyStore |
KeyStore.getInstance(String
Returns a keystore object of the specified type.
|
static KeyStore |
KeyStore.getInstance(String
Returns a keystore object of the specified type.
|
static KeyStore |
KeyStore.getInstance(String
Returns a keystore object of the specified type.
|
abstract KeyStore |
KeyStore.Builder.getKeyStore()
Returns the KeyStore described by this object.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyStore |
KeyStore.Builder.newInstance(KeyStore
Returns a new Builder that encapsulates the given KeyStore.
|
| Constructor and Description | |
|---|---|
PKIXBuilderParameters(KeyStore
Creates an instance of
PKIXBuilderParameters that populates the set of most-trusted CAs from the trusted certificate entries contained in the specified
KeyStore.
|
|
PKIXParameters(KeyStore
Creates an instance of
PKIXParameters that populates the set of most-trusted CAs from the trusted certificate entries contained in the specified
KeyStore.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
TrustManagerFactorySpi.engineInit(KeyStore
Initializes this factory with a source of certificate authorities and related trust material.
|
protected abstract void |
KeyManagerFactorySpi.engineInit(KeyStore
Initializes this factory with a source of key material.
|
void |
TrustManagerFactory.init(KeyStore
Initializes this factory with a source of certificate authorities and related trust material.
|
void |
KeyManagerFactory.init(KeyStore
Initializes this factory with a source of key material.
|