Uses of Class
java.security.cert.CertPath
-
Packages that use CertPath 软件包 描述 java.security 提供安全框架的类和接口。java.security.cert 提供用于解析和管理证书,证书撤销列表(CRL)和认证路径的类和接口。jdk.security.jarsigner -
-
Uses of CertPath in java.security
Methods in java.security that return CertPath Modifier and Type 方法 描述 CertPath
CodeSigner. getSignerCertPath()
返回签名者的证书路径。CertPath
Timestamp. getSignerCertPath()
返回时间戳权限的证书路径。Constructors in java.security with parameters of type CertPath Constructor 描述 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 Modifier and Type 方法 描述 CertPath
CertificateFactorySpi. engineGenerateCertPath(InputStream inStream)
生成一个CertPath
对象,并使用从InputStream
inStream读取的数据进行初始化。CertPath
CertificateFactorySpi. engineGenerateCertPath(InputStream inStream, String encoding)
生成一个CertPath
对象,并使用从InputStream
inStream读取的数据进行初始化。CertPath
CertificateFactorySpi. engineGenerateCertPath(List<? extends Certificate> certificates)
生成一个CertPath
对象,并用List
的Certificate
初始化。CertPath
CertificateFactory. generateCertPath(InputStream inStream)
生成一个CertPath
对象,并使用从InputStream
inStream读取的数据进行初始化。CertPath
CertificateFactory. generateCertPath(InputStream inStream, String encoding)
生成一个CertPath
对象,并使用从InputStream
inStream读取的数据进行初始化。CertPath
CertificateFactory. generateCertPath(List<? extends Certificate> certificates)
生成一个CertPath
对象,并使用List
的Certificate
初始化。CertPath
CertPathBuilderResult. getCertPath()
返回建立的认证路径。CertPath
CertPathValidatorException. getCertPath()
返回在抛出异常时验证的认证路径。CertPath
PKIXCertPathBuilderResult. getCertPath()
返回建立和验证的认证路径。Methods in java.security.cert with parameters of type CertPath Modifier and Type 方法 描述 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 Constructor 描述 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 Constructor 描述 Builder(PrivateKey privateKey, CertPath certPath)
使用私钥和认证路径创建一个JarSigner.Builder
对象。
-