java命名空间javax.crypto类encryptedprivatekeyinfo的类成员方法:
encryptedprivatekeyinfo定义及介绍
本文导语:
encryptedprivatekeyinfo
public encryptedprivatekeyinfo(algorithmparameters algparams,
byte[] encrypteddata)
throws nosuchalgorithmexception
根据加密算法参数和加密数据构造 encryptedprivatekeyinfo。
参数:algparams - 供...
encryptedprivatekeyinfo
public encryptedprivatekeyinfo(algorithmparameters algparams,
byte[] encrypteddata)
throws nosuchalgorithmexception
- 根据加密算法参数和加密数据构造
encryptedprivatekeyinfo
。
- 参数:
algparams
- 供加密算法使用的算法参数。algparams.getencoded()
应返回 encryptedprivatekeyinfo
类型的 algorithmidentifer
部分的 parameters
字段的 asn.1 编码字节。encrypteddata
- 加密数据。encrypeddata
的内容被复制,以免构造此对象时的后续修改。
- 抛出:
nullpointerexception
- 如果 algparams
或 encrypteddata
为 null。
illegalargumentexception
- 如果 encrypteddata
为空,即长度为 0。
nosuchalgorithmexception
- 如果的指定的 algparams
参数的指定 algname 不受支持。
getalgname
public string getalgname()
- 返回加密算法。
注:如果有这样的映射可用,则返回标准名称而不是指定的名称。有关标准 cipher 算法名称的信息,请参见
java cryptography architecture reference guide 中的附录 a。
- 返回:
- 加密算法名称。