X509AsymmetricSecurityKey.DecryptKey(String, Byte[]) 方法

定义

使用指定的加密算法解密指定的加密密钥。

public:
 override cli::array <System::Byte> ^ DecryptKey(System::String ^ algorithm, cli::array <System::Byte> ^ keyData);
public override byte[] DecryptKey (string algorithm, byte[] keyData);
override this.DecryptKey : string * byte[] -> byte[]
Public Overrides Function DecryptKey (algorithm As String, keyData As Byte()) As Byte()

参数

algorithm
String

用于解密密钥的加密算法。

keyData
Byte[]

包含加密密钥的 Byte 数组。

返回

Byte[]

包含解密密钥的 Byte 数组。

例外

构造函数中指定的 X.509 证书不具有私钥。

- 或 -

X.509 证书具有私钥,但它不是使用 RSA 算法生成的。

- 或 -

X.509 证书具有私钥,并且是使用 RSA 算法生成的,但是 KeyExchangeAlgorithm 属性为 null

- 或 -

不支持 algorithm 参数。 支持的算法为 XmlEncRSA15UrlXmlEncRSAOAEPUrl

注解

使用 XmlEncRSA15UrlXmlEncRSAOAEPUrl 字段指定算法。

适用于