SqlColumnEncryptionKeyStoreProvider.DecryptColumnEncryptionKey 方法

定义

对列加密密钥的指定加密值进行解密。 应使用具有指定密钥路径和指定算法的列主密钥加密加密加密值。

public:
 abstract cli::array <System::Byte> ^ DecryptColumnEncryptionKey(System::String ^ masterKeyPath, System::String ^ encryptionAlgorithm, cli::array <System::Byte> ^ encryptedColumnEncryptionKey);
public abstract byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);
abstract member DecryptColumnEncryptionKey : string * string * byte[] -> byte[]
Public MustOverride Function DecryptColumnEncryptionKey (masterKeyPath As String, encryptionAlgorithm As String, encryptedColumnEncryptionKey As Byte()) As Byte()

参数

masterKeyPath
String

主密钥路径。

encryptionAlgorithm
String

加密算法。

encryptedColumnEncryptionKey
Byte[]

加密列加密密钥。

返回

Byte[]

返回 Byte。 解密的列加密密钥。

适用于