java.security.cert
Uses of Class CertPath
Uses of CertPath in java.security.cert
Modifier and Type | Method and Description |
---|---|
CertificateFactorySpi.engineGenerateCertPath(InputStream inStream)
Generates a
CertPath object and initializes it with the data
read from the InputStream inStream.
|
|
CertificateFactorySpi.engineGenerateCertPath(InputStream inStream,String encoding)
Generates a
CertPath object and initializes it with the data
read from the InputStream inStream.
|
|
CertificateFactorySpi.engineGenerateCertPath(List<? extends Certificate> certificates)
Generates a
CertPath object and initializes it with a
List of Certificate s.
|
|
CertificateFactory.generateCertPath(InputStream inStream)
Generates a
CertPath object and initializes it
with the data read from the InputStream inStream.
|
|
CertificateFactory.generateCertPath(InputStream inStream,String encoding)
Generates a
CertPath object and initializes it with the
data read from the InputStream inStream.
|
|
CertificateFactory.generateCertPath(List<? extends Certificate> certificates)
Generates a
CertPath object and initializes it with a
List of Certificate s.
|
|
PKIXCertPathBuilderResult.getCertPath()
Returns the built and validated certification path.
|
|
CertPathValidatorException.getCertPath()
Returns the certification path that was being validated when
the exception was thrown.
|
|
CertPathBuilderResult.getCertPath()
Returns the built certification path.
|
Modifier and Type | Method and Description |
---|---|
|
CertPathValidatorSpi.engineValidate(CertPath certPath,CertPathParameters params)
Validates the specified certification path using the specified
algorithm parameter set.
|
CertPathValidator.validate(CertPath cp,CertPathParameters param)
Validates the specified certification path using the specified
algorithm parameter set.
|
Constructor and Description |
---|
CertPathValidatorException(String msg,Throwable cause,CertPath certPath,int index)
Creates a
CertPathValidatorException with the specified
detail message, cause, certification path, and index.
|
PKIXCertPathBuilderResult(CertPath certPath,TrustAnchor trustAnchor,PolicyNode policyTree,PublicKey subjectPublicKey)
Creates an instance of
PKIXCertPathBuilderResult
containing the specified parameters.
|