| Package | Description |
|---|---|
| java.security.cert |
Provides classes and interfaces for parsing and managing
certificates, certificate revocation lists (CRLs), and
certification paths.
|
| Modifier and Type | Method and Description |
|---|---|
CertPath |
CertificateFactorySpi.engineGenerateCertPath(java.io.InputStream inStream)
Generates a
CertPath object and initializes it with
the data read from the InputStream inStream. |
CertPath |
CertificateFactorySpi.engineGenerateCertPath(java.io.InputStream inStream,
java.lang.String encoding)
Generates a
CertPath object and initializes it with
the data read from the InputStream inStream. |
CertPath |
CertificateFactorySpi.engineGenerateCertPath(java.util.List<? extends Certificate> certificates)
Generates a
CertPath object and initializes it with
a List of Certificates. |
CertPath |
CertificateFactory.generateCertPath(java.io.InputStream inStream)
Generates a
CertPath object and initializes it with
the data read from the InputStream inStream. |
CertPath |
CertificateFactory.generateCertPath(java.io.InputStream inStream,
java.lang.String encoding)
Generates a
CertPath object and initializes it with
the data read from the InputStream inStream. |
CertPath |
CertificateFactory.generateCertPath(java.util.List<? extends Certificate> certificates)
Generates a
CertPath object and initializes it with
a List of Certificates. |
CertPath |
CertPathBuilderResult.getCertPath()
Returns the built certification path.
|
CertPath |
CertPathValidatorException.getCertPath()
Returns the certification path that was being validated when
the exception was thrown.
|
CertPath |
PKIXCertPathBuilderResult.getCertPath()
Returns the built and validated certification path.
|
| Modifier and Type | Method and Description |
|---|---|
abstract CertPathValidatorResult |
CertPathValidatorSpi.engineValidate(CertPath certPath,
CertPathParameters params)
Validates the specified certification path using the specified
algorithm parameter set.
|
CertPathValidatorResult |
CertPathValidator.validate(CertPath certPath,
CertPathParameters params)
Validates the specified certification path using the specified
algorithm parameter set.
|
| Constructor and Description |
|---|
CertPathValidatorException(java.lang.String msg,
java.lang.Throwable cause,
CertPath certPath,
int index)
Creates a
CertPathValidatorException with the specified
detail message, cause, certification path, and index. |
CertPathValidatorException(java.lang.String msg,
java.lang.Throwable cause,
CertPath certPath,
int index,
CertPathValidatorException.Reason reason)
Creates a
CertPathValidatorException with the specified
detail message, cause, certification path, index, and reason. |
PKIXCertPathBuilderResult(CertPath certPath,
TrustAnchor trustAnchor,
PolicyNode policyTree,
PublicKey subjectPublicKey)
Creates an instance of
PKIXCertPathBuilderResult
containing the specified parameters. |