3 overrides of DecryptColumnEncryptionKey
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCertificateStoreProvider.cs (1)
77public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCngProvider.cs (1)
57public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCspProvider.cs (1)
63public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)
1 reference to DecryptColumnEncryptionKey
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlSymmetricKeyCache.cs (1)
90plaintextKey = provider.DecryptColumnEncryptionKey(keyInfo.keyPath, keyInfo.algorithmName, keyInfo.encryptedKey);