Méthode | Description | |
---|---|---|
DecryptColumnEncryptionKey ( string masterKeyPath, string encryptionAlgorithm, Array encryptedColumnEncryptionKey ) : byte[] |
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.
|
|
EncryptColumnEncryptionKey ( string masterKeyPath, string encryptionAlgorithm, Array columnEncryptionKey ) : byte[] |
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 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 |
Résultat | byte[] |
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[] |