Package | Description |
---|---|
java.security | |
java.security.cert |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
AlgorithmParameterGeneratorSpi.engineInit(AlgorithmParameterSpec genParamSpec,
SecureRandom random) |
protected void |
SignatureSpi.engineSetParameter(AlgorithmParameterSpec params)
method was added in 1.2.
|
void |
AlgorithmParameterGenerator.init(AlgorithmParameterSpec genParamSpec) |
void |
AlgorithmParameterGenerator.init(AlgorithmParameterSpec genParamSpec,
SecureRandom random) |
void |
KeyPairGenerator.initialize(AlgorithmParameterSpec params) |
void |
KeyPairGenerator.initialize(AlgorithmParameterSpec params,
SecureRandom random) |
void |
KeyPairGeneratorSpi.initialize(AlgorithmParameterSpec params,
SecureRandom random)
method was added in 1.2.
|
void |
Signature.setParameter(AlgorithmParameterSpec params) |
Modifier and Type | Method and Description |
---|---|
CertPathBuilderResult |
CertPathBuilder.build(CertPathParameters params)
Builds a certification path with the specified algorithm parameters.
|
abstract CertPathBuilderResult |
CertPathBuilderSpi.engineBuild(CertPathParameters params)
Creates a certificate path from the specified parameters.
|
abstract CertPathValidatorResult |
CertPathValidatorSpi.engineValidate(CertPath certPath,
CertPathParameters params)
Attempt to validate a certificate path.
|
static CertStore |
CertStore.getInstance(String type,
CertStoreParameters params)
Get an instance of the given certificate store from the first
installed provider.
|
static CertStore |
CertStore.getInstance(String type,
CertStoreParameters params,
Provider provider)
Get an instance of the given certificate store from the given
provider.
|
static CertStore |
CertStore.getInstance(String type,
CertStoreParameters params,
String provider)
Get an instance of the given certificate store from the named
provider.
|
void |
PKIXParameters.setTrustAnchors(Set trustAnchors)
Sets the trust anchors of this class, replacing the current trust
anchors with those in the given set.
|
CertPathValidatorResult |
CertPathValidator.validate(CertPath certPath,
CertPathParameters params)
Attempt to validate a certificate path.
|
Constructor and Description |
---|
CertStoreSpi(CertStoreParameters params)
Creates a new CertStoreSpi.
|
PKIXBuilderParameters(KeyStore keystore,
CertSelector targetConstraints)
Create a new PKIXBuilderParameters object, populating the trusted
certificates set with all X.509 certificates found in the given key
store.
|
PKIXBuilderParameters(Set trustAnchors,
CertSelector targetConstraints)
Create a new PKIXBuilderParameters object, populating the trusted
certificates set with the elements of the given set, each of which
must be a
TrustAnchor . |
PKIXParameters(KeyStore keystore)
Create a new PKIXParameters object, populating the trusted
certificates set with all certificates found in the given key
store.
|
PKIXParameters(Set trustAnchors)
Create a new PKIXParameters object, populating the trusted
certificates set with the elements of the given set, each of which
must be a
TrustAnchor . |