System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.EncryptColumnEncryptionKey C# (CSharp) Méthode

EncryptColumnEncryptionKey() public abstract méthode

This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and encrypt a plain text column encryption key with a given asymmetric key encryption algorithm.
public abstract EncryptColumnEncryptionKey ( string masterKeyPath, string encryptionAlgorithm, Array columnEncryptionKey ) : byte[]
masterKeyPath string
encryptionAlgorithm string Asymmetric Key Encryption Algorithm
columnEncryptionKey Array Plain text column encryption key to be encrypted
Résultat byte[]
        public abstract byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey);
    }