共用方式為


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
已解密的資料行加密金鑰。

適用於