Transparent Data Encryption In SQL Server

Transparent Data Encryption (TDE) is an encryption mechanism of encrypting the data at rest. The data is encrypted before writing to the database and is decrypted before being read from it. This process happens behind the scene such that the client is unaware about the Encryption/Decryption process, hence the name ‘Transparent’.

Encryption Internals

Transparent Data Encryption is implemented by converting the plain text to a Cipher text, using an encryption algorithm. In our case, it is AES_256 and a key. The key acts as the locking mechanism. To decrypt Cipher text, the same algorithm and key must be used, which prevents spurious hackers from decrypting the Cipher as they don’t know the key used for initial encryption. Thus, the key serves the locking/unlocking mechanism of the encryption algorithm.

The overall steps involved in the implementation of TDE are given below.

  • Create a Master key, which is a Symmetric Key.
  • Create the Certificate, using the Master Key.
  • Create Encryption Key and Use the certificate to protect the Asymmetric Encryption key.
  • Alter the database to enable TDE

    SQL Server

Create Master key

As the first step, we must create a Master key, which is a Symmetric key. It will be later used to create the certificate, which protects the Asymmetric Encryption key. We will be using the Create Master Key command to generate the Master key. 

  1. USE master;  
  2. GO  
  3. CREATE MASTER KEY  
  4. ENCRYPTION BY PASSWORD = 'password-1';   

SQL Server

Create the Certificate

Once the Master key is in place, we will then use it to create the certificate. This certificate will finally be used to generate the Asymmetric Encryption key, which is required to encrypt the data. 

  1. CREATE CERTIFICATE SelfSignedCert  
  2. WITH SUBJECT = 'Self Signed Certificate';  


SQL Server

Create Encryption key

Once the certificate has been created, we will create the final Encryption key, which will be used to encrypt the data. The Encryption key in turn will be encrypted, using the previously created certificate. 

  1. USE DB;  
  2. GO  
  3.    
  4. CREATE DATABASE ENCRYPTION KEY  
  5. WITH ALGORITHM = AES_256  
  6. ENCRYPTION BY SERVER CERTIFICATE SelfSignedCert;  


SQL Server

Set Transparent Data Encryption

As the final step, we will enable the Transparent Data Encryption on the database, using the Set Encryption On command. 

  1. ALTER DATABASE DB  
  2. SET ENCRYPTION ON;  


SQL Server

Summary

Thus, we have enabled Transparent Data Encryption on the database, using Asymmetric and Symmetric keys. Let’s check Encryption status given below.

  1. SELECT DB_NAME(database_id) DatabaseName,  
  2.   encryption_state EncryptionState,  
  3.   key_algorithm EncryptionAlgorithm,  
  4.   key_length KeyLength,  
  5.   encryptor_type EncryptionType  
  6. FROM sys.dm_database_encryption_keys;  

SQL Server

As we can see, there are two databases that are listed. DB is the name of the database in use. When we implement TDE on any database, the Tempdb will also be encrypted along with it. The encryption State ‘3’ indicates that the DB is in encrypted state. The values of Encryption state are given in the table below.

  1. Unencrypted
  2. Encryption in progress
  3. Encrypted

Though the Encryption has been implemented, the end user wouldn’t feel the Encryption in an action. We can check the results by running the select query and we will get the results as usual.

SQL Server

Up Next
    Ebook Download
    View all
    Learn
    View all