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 变量和类型 方法 描述 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 变量和类型 方法 描述 List<CertStore>
PKIXParameters. getCertStores()
返回用于查找证书和CRL的CertStore
的不可变List
。Methods in java.security.cert with parameters of type CertStore 变量和类型 方法 描述 void
PKIXParameters. addCertStore(CertStore store)
将CertStore
添加到用于查找证书和CRL的CertStore
列表的CertStore
。Method parameters in java.security.cert with type arguments of type CertStore 变量和类型 方法 描述 void
PKIXParameters. setCertStores(List<CertStore> stores)
Sets the list ofCertStore
s to be used in finding certificates and CRLs.
-