Uses of Class
java.security.cert.CertStore
-
Packages that use CertStore 软件包 描述 java.security.cert 提供用于解析和管理证书,证书撤销列表(CRL)和认证路径的类和接口。 -
-
Uses of CertStore in java.security.cert
Methods in java.security.cert that return CertStore Modifier and Type 方法 描述 static CertStore
CertStore. getInstance(String type, CertStoreParameters params)
返回实现指定的CertStore
类型的CertStore
对象,并使用指定的参数进行初始化。static CertStore
CertStore. getInstance(String type, CertStoreParameters params, String provider)
返回实现指定的CertStore
类型的CertStore
对象。static CertStore
CertStore. getInstance(String type, CertStoreParameters params, Provider provider)
返回实现指定的CertStore
类型的CertStore
对象。Methods in java.security.cert that return types with arguments of type CertStore Modifier and Type 方法 描述 List<CertStore>
PKIXParameters. getCertStores()
返回用于查找证书和CRL的不可变List
的CertStore
。Methods in java.security.cert with parameters of type CertStore Modifier and Type 方法 描述 void
PKIXParameters. addCertStore(CertStore store)
在查找证书和CRL中使用的CertStore
列表的末尾添加一个CertStore
。Method parameters in java.security.cert with type arguments of type CertStore Modifier and Type 方法 描述 void
PKIXParameters. setCertStores(List<CertStore> stores)
Sets the list ofCertStore
s to be used in finding certificates and CRLs.
-