You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Implementation of column master key store provider that allows client applications to access data when a
17
-
/// column master key is stored in Microsoft Azure Key Vault. For more information on Always Encrypted, please refer to: https://aka.ms/AlwaysEncrypted.
17
+
/// column master key is stored in Microsoft Azure Key Vault.
18
+
///
19
+
/// For more information on Always Encrypted, please refer to: https://aka.ms/AlwaysEncrypted.
18
20
///
19
21
/// A Column Encryption Key encrypted with certificate store provider should be decryptable by this provider and vice versa.
20
22
///
21
-
/// Envelope Format for the encrypted column encryption key
/// version: A single byte indicating the format version.
25
-
/// keyPathLength: Length of the keyPath.
26
-
/// ciphertextLength: ciphertext length
27
-
/// keyPath: keyPath used to encrypt the column encryption key. This is only used for troubleshooting purposes and is not verified during decryption.
28
-
/// ciphertext: Encrypted column encryption key
29
-
/// signature: Signature of the entire byte array. Signature is validated before decrypting the column encryption key.
26
+
/// - version: A single byte indicating the format version.
27
+
/// - keyPathLength: Length of the keyPath.
28
+
/// - ciphertextLength: ciphertext length
29
+
/// - keyPath: keyPath used to encrypt the column encryption key. This is only used for troubleshooting purposes and is not verified during decryption.
30
+
/// - ciphertext: Encrypted column encryption key
31
+
/// - signature: Signature of the entire byte array. Signature is validated before decrypting the column encryption key.
30
32
/// </summary>
31
33
/// <remarks>
32
34
/// <format type="text/markdown"><
46
-
/// - [Example: Using Azure Key Vault with Always Encrypted with enclaves enabled](~/connect/ado-net/sql/azure-key-vault-enclave-example.md)
36
+
/// For more information, see: [Using the Azure Key Vault Provider](/sql/connect/ado-net/sql/sqlclient-support-always-encrypted#using-the-azure-key-vault-provider)
0 commit comments