System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.DecryptColumnEncryptionKey C# (CSharp) 메소드

DecryptColumnEncryptionKey() 공개 추상적인 메소드

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
리턴 byte[]
        public abstract byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);