Uses of Class
java.security.cert.CertPath
Package
Description
Provides the classes and interfaces for the security framework.
Provides classes and interfaces for parsing and managing
certificates, certificate revocation lists (CRLs), and
certification paths.
This package defines APIs for signing jar files.
-
Uses of CertPath in java.security
Modifier and TypeMethodDescriptionCodeSigner.getSignerCertPath()
Returns the signer's certificate path.Timestamp.getSignerCertPath()
Returns the certificate path for the Timestamping Authority. -
Uses of CertPath in java.security.cert
Modifier and TypeMethodDescriptionCertificateFactorySpi.engineGenerateCertPath
(InputStream inStream) Generates aCertPath
object and initializes it with the data read from theInputStream
inStream.CertificateFactorySpi.engineGenerateCertPath
(InputStream inStream, String encoding) Generates aCertPath
object and initializes it with the data read from theInputStream
inStream.CertificateFactorySpi.engineGenerateCertPath
(List<? extends Certificate> certificates) Generates aCertPath
object and initializes it with aList
ofCertificate
s.final CertPath
CertificateFactory.generateCertPath
(InputStream inStream) Generates aCertPath
object and initializes it with the data read from theInputStream
inStream.final CertPath
CertificateFactory.generateCertPath
(InputStream inStream, String encoding) Generates aCertPath
object and initializes it with the data read from theInputStream
inStream.final CertPath
CertificateFactory.generateCertPath
(List<? extends Certificate> certificates) Generates aCertPath
object and initializes it with aList
ofCertificate
s.CertPathBuilderResult.getCertPath()
Returns the built certification path.CertPathValidatorException.getCertPath()
Returns the certification path that was being validated when the exception was thrown.PKIXCertPathBuilderResult.getCertPath()
Returns the built and validated certification path.Modifier and TypeMethodDescriptionabstract CertPathValidatorResult
CertPathValidatorSpi.engineValidate
(CertPath certPath, CertPathParameters params) Validates the specified certification path using the specified algorithm parameter set.final CertPathValidatorResult
CertPathValidator.validate
(CertPath certPath, CertPathParameters params) Validates the specified certification path using the specified algorithm parameter set.ModifierConstructorDescriptionCertPathValidatorException
(String msg, Throwable cause, CertPath certPath, int index) Creates aCertPathValidatorException
with the specified detail message, cause, certification path, and index.CertPathValidatorException
(String msg, Throwable cause, CertPath certPath, int index, CertPathValidatorException.Reason reason) Creates aCertPathValidatorException
with the specified detail message, cause, certification path, index, and reason.PKIXCertPathBuilderResult
(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResult
containing the specified parameters. -
Uses of CertPath in jdk.security.jarsigner
ModifierConstructorDescriptionBuilder
(PrivateKey privateKey, CertPath certPath) Creates aJarSigner.Builder
object with a private key and a certification path.