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

定义

在派生类中重写时,解密指定的加密密钥。

public:
 abstract cli::array <System::Byte> ^ DecryptKey(System::String ^ algorithm, cli::array <System::Byte> ^ keyData);
public abstract byte[] DecryptKey (string algorithm, byte[] keyData);
abstract member DecryptKey : string * byte[] -> byte[]
Public MustOverride Function DecryptKey (algorithm As String, keyData As Byte()) As Byte()

参数

algorithm
String

用于对密钥进行加密的加密算法。

keyData
Byte[]

包含加密密钥的 Byte 数组。

返回

Byte[]

包含解密密钥的 Byte 数组。

注解

使用 SecurityAlgorithms 类的静态字段指定算法。

适用于