SQLServerColumnEncryptionAzureKeyVaultProvider, SQLServerColumnEncryptionCertificateStoreProvider, SQLServerColumnEncryptionJavaKeyStoreProviderpublic abstract class SQLServerColumnEncryptionKeyStoreProvider
extends java.lang.Object
| Constructor | Description |
|---|---|
SQLServerColumnEncryptionKeyStoreProvider() |
| Modifier and Type | Method | Description |
|---|---|---|
abstract byte[] |
decryptColumnEncryptionKey(java.lang.String masterKeyPath,
java.lang.String encryptionAlgorithm,
byte[] encryptedColumnEncryptionKey) |
Decrypts the specified encrypted value of a column encryption key.
|
abstract byte[] |
encryptColumnEncryptionKey(java.lang.String masterKeyPath,
java.lang.String encryptionAlgorithm,
byte[] columnEncryptionKey) |
Encrypts a column encryption key using the column master key with the specified key path and using the specified
algorithm.
|
abstract java.lang.String |
getName() |
Returns the name of this key store provider.
|
abstract void |
setName(java.lang.String name) |
Sets the name of this key store provider.
|
public SQLServerColumnEncryptionKeyStoreProvider()
public abstract void setName(java.lang.String name)
name - value to be set for the key store provider.public abstract java.lang.String getName()
public abstract byte[] decryptColumnEncryptionKey(java.lang.String masterKeyPath,
java.lang.String encryptionAlgorithm,
byte[] encryptedColumnEncryptionKey)
throws SQLServerException
masterKeyPath - The column master key path.encryptionAlgorithm - the specific encryption algorithm.encryptedColumnEncryptionKey - the encrypted column encryption keySQLServerException - when an error occurs while decrypting the CEKpublic abstract byte[] encryptColumnEncryptionKey(java.lang.String masterKeyPath,
java.lang.String encryptionAlgorithm,
byte[] columnEncryptionKey)
throws SQLServerException
masterKeyPath - The column master key path.encryptionAlgorithm - the specific encryption algorithm.columnEncryptionKey - column encryption key to be encrypted.SQLServerException - when an error occurs while encrypting the CEKCopyright © 2018 Microsoft Corporation. All rights reserved.