共用方式為


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 欄位,即可指定演算法。

適用於