java命名空间javax.crypto类cipher的类成员方法:
secret_key定义及介绍
本文导语:
secret_key
public static final int secret_key
用于表示要解包的密钥为“秘密密钥”的常量。
另请参见:常量字段值
cipher
protected cipher(cipherspi cipherspi,
provider provider,
string transformation)
创建 cipher 对象。...
secret_key
public static final int secret_key
- 用于表示要解包的密钥为“秘密密钥”的常量。
- 另请参见:
- 常量字段值
protected cipher(cipherspi cipherspi,
provider provider,
string transformation)
- 创建 cipher 对象。
- 参数:
cipherspi
- 代理provider
- 提供者transformation
- 转换
getinstance
public static final cipher getinstance(string transformation)
throws nosuchalgorithmexception,
nosuchpaddingexception
- 返回实现指定转换的
cipher
对象。
此方法从首选 provider 开始遍历已注册安全提供者列表。返回一个封装 cipherspi 实现的新 cipher 对象,该实现取自支持指定算法的第一个 provider。
注意,可以通过 security.getproviders()
方法获取已注册提供者列表。
- 参数:
transformation
- 转换的名称,例如 des/cbc/pkcs5padding。有关标准转换名称的信息,请参见
java cryptography architecture reference guide 的附录 a。
- 返回:
- 实现所请求转换的 cipher。
- 抛出:
nosuchalgorithmexception
- 如果 transformation
为 null、空、无效格式,或者没有 provider 支持指定算法的 cipherspi 实现。
nosuchpaddingexception
- 如果 transformation
包含的填充方案不可用。- 另请参见:
provider