java命名空间java.security类messagedigest的类成员方法:
messagedigest定义及介绍
本文导语:
messagedigest
protected messagedigest(string algorithm)
创建具有指定算法名称的信息摘要。
参数:algorithm - 摘要算法的标准名称。有关标准算法名称的信息,请参阅 java cryptography architecture api specification & reference 中的...
messagedigest
protected messagedigest(string algorithm)
- 创建具有指定算法名称的信息摘要。
- 参数:
algorithm
- 摘要算法的标准名称。有关标准算法名称的信息,请参阅 java cryptography architecture api specification & reference 中的附录 a。
getinstance
public static messagedigest getinstance(string algorithm)
throws nosuchalgorithmexception
- 返回实现指定摘要算法的 messagedigest 对象。
此方法从首选 provider 开始遍历已注册安全提供者列表。返回封装取自第一个 provider 的 messagedigestspi 实现的新 messagedigest 对象,第一个 provider 支持指定算法。
注意,可以通过 参数
iis7站长之家.getproviders()
方法获取已注册提供者列表。
- 参数:
algorithm
- 所请求算法的名称。有关标准算法名称的信息,请参阅
java cryptography architecture api specification & reference 中的附录 a。
- 返回:
- 实现指定算法的 message digest 对象。
- 抛出:
nosuchalgorithmexception
- 如果没有 provider 支持指定算法的 messagedigestspi 实现- 另请参见:
provider