java命名空间java.security.cert类certpathbuilder的类成员方法:
certpathbuilder定义及介绍
本文导语:
certpathbuilder
protected certpathbuilder(certpathbuilderspi builderspi,
provider provider,
string algorithm)
创建一个给定算法的 certpathbuilder 对象,并在其中封装给定的提供者实现(spi 对象)...
certpathbuilder
protected certpathbuilder(certpathbuilderspi builderspi,
provider provider,
string algorithm)
- 创建一个给定算法的
certpathbuilder
对象,并在其中封装给定的提供者实现(spi 对象)。
- 参数:
builderspi
- 提供者实现provider
- 提供者algorithm
- 算法名称
getinstance
public static certpathbuilder getinstance(string algorithm)
throws nosuchalgorithmexception
- 返回实现了指定算法的
certpathbuilder
对象。
此方法从首选 provider 开始,遍历已注册安全提供者列表。返回一个封装 certpathbuilderspi 实现的新 certpathbuilder 对象,该实现取自第一个支持指定算法的 provider。
注意,已注册提供者列表可以通过 security.getproviders()
方法获得。
- 参数:
algorithm
- 所请求的 certpathbuilder
算法名称。有关标准算法名称的信息,请参阅
java certification path api programmer's guide 的附录 a。
- 返回:
- 实现了指定算法的
certpathbuilder
对象。
- 抛出:
nosuchalgorithmexception
- 如果没有 provider 支持指定算法的 certpathbuilderspi 实现。- 另请参见:
provider