Uses of Class
java.security.cert.CertPath
-
Packages that use CertPath 软件包 描述 java.security 提供安全框架的类和接口。java.security.cert 提供用于解析和管理证书,证书吊销列表(CRL)和证书路径的类和接口。jdk.security.jarsigner 该包定义了用于签署jar文件的API。 -
-
Uses of CertPath in java.security
Methods in java.security that return CertPath 变量和类型 方法 描述 CertPath
CodeSigner. getSignerCertPath()
返回签名者的证书路径。CertPath
Timestamp. getSignerCertPath()
返回Timestamping Authority的证书路径。Constructors in java.security with parameters of type CertPath 构造器 描述 CodeSigner(CertPath signerCertPath, Timestamp timestamp)
构造一个CodeSigner对象。Timestamp(Date timestamp, CertPath signerCertPath)
构造一个时间戳。 -
Uses of CertPath in java.security.cert
Methods in java.security.cert that return CertPath 变量和类型 方法 描述 CertPath
CertificateFactorySpi. engineGenerateCertPath(InputStream inStream)
生成CertPath
对象,并使用从InputStream
inStream中读取的数据InputStream
进行初始化。CertPath
CertificateFactorySpi. engineGenerateCertPath(InputStream inStream, String encoding)
生成CertPath
对象,并使用从InputStream
inStream中读取的数据InputStream
进行初始化。CertPath
CertificateFactorySpi. engineGenerateCertPath(List<? extends Certificate> certificates)
生成CertPath
对象并使用List
(Certificate
对其进行初始化。CertPath
CertificateFactory. generateCertPath(InputStream inStream)
生成CertPath
对象,并使用从InputStream
inStream中读取的数据InputStream
进行初始化。CertPath
CertificateFactory. generateCertPath(InputStream inStream, String encoding)
生成CertPath
对象,并使用从InputStream
inStream中读取的数据InputStream
进行初始化。CertPath
CertificateFactory. generateCertPath(List<? extends Certificate> certificates)
生成CertPath
对象并使用List
的Certificate
s对其进行初始化。CertPath
CertPathBuilderResult. getCertPath()
返回构建的证书路径。CertPath
CertPathValidatorException. getCertPath()
返回抛出异常时验证的证书路径。CertPath
PKIXCertPathBuilderResult. getCertPath()
返回构建和验证的证书路径。Methods in java.security.cert with parameters of type CertPath 变量和类型 方法 描述 abstract CertPathValidatorResult
CertPathValidatorSpi. engineValidate(CertPath certPath, CertPathParameters params)
使用指定的算法参数集验证指定的证书路径。CertPathValidatorResult
CertPathValidator. validate(CertPath certPath, CertPathParameters params)
使用指定的算法参数集验证指定的证书路径。Constructors in java.security.cert with parameters of type CertPath 构造器 描述 CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index)
使用指定的详细消息,原因,证书路径和索引创建CertPathValidatorException
。CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index, CertPathValidatorException.Reason reason)
使用指定的详细消息,原因,证书路径,索引和原因创建CertPathValidatorException
。PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
创建包含指定参数的PKIXCertPathBuilderResult
实例。 -
Uses of CertPath in jdk.security.jarsigner
Constructors in jdk.security.jarsigner with parameters of type CertPath 构造器 描述 Builder(PrivateKey privateKey, CertPath certPath)
使用私钥和证书路径创建JarSigner.Builder
对象。
-