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 を返します。
暗号化が解除された列暗号化キー。

適用対象