System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.DecryptColumnEncryptionKey C# (CSharp) Method

DecryptColumnEncryptionKey() public abstract method

This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by the key path and decrypt an encrypted column encryption key with a given encryption algorithm.
public abstract DecryptColumnEncryptionKey ( string masterKeyPath, string encryptionAlgorithm, Array encryptedColumnEncryptionKey ) : byte[]
masterKeyPath string Complete path of an asymmetric key. Path format is specific to a key store provider.
encryptionAlgorithm string Asymmetric Key Encryption Algorithm
encryptedColumnEncryptionKey Array Encrypted Column Encryption Key
return byte[]
        public abstract byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);