3 Configuring Transparent Data Encryption
You can configure software or hardware keystores, for use on both individual table columns or entire tablespaces.
- About Configuring Transparent Data Encryption
To configure Transparent Data Encryption, you must perform a one-time setup before you create keystores and encrypt data. - Transparent Data Encryption Keystore Search Order
The search order for the TDE keystore depends on how you have set either the instance initialization parameters, thesqlnet.ora
parameters, or the environment variables. - Configuring a Software Keystore
A software keystore is a container for the master encryption key, and it resides in the software file system. - Configuring a Hardware Keystore
A hardware keystore resides in a hardware security module (HSM), which is designed to store encryption keys. - Encrypting Columns in Tables
You can use Transparent Data Encryption to encrypt individual columns in database tables. - Encryption Conversions for Tablespaces and Databases
You can perform encryption operations on both offline and online tablespaces and databases. - Transparent Data Encryption Data Dynamic and Data Dictionary Views
You can query a set of dynamic and data dictionary views to find more information about Transparent Data Encryption (TDE) data.
Parent topic: Using Transparent Data Encryption
About Configuring Transparent Data Encryption
To configure Transparent Data Encryption, you must perform a one-time setup before you create keystores and encrypt data.
Before you can configure keystores and begin to encrypt data, you must perform a one-time configuration using the WALLET_ROOT
and TDE_CONFIGURATION
parameters to designate the location and type of keystores that you plan to create.
The WALLET_ROOT
parameter specifies the keystore directory location. Before you set WALLET_ROOT
, ensure that you have an existing directory that you can use to store keystores. (Typically, this directory is called wallet
.)
The TDE_CONFIGURATION
parameter specifies the type of keystore (software keystore, hardware keystore, or Oracle Key Vault keystore). If you omit the TDE_CONFIGURATION
parameter, then Oracle Database uses the sqlnet.ora
file settings. After you set the type of keystore using TDE_CONFIGURATION
, when you create the keystore, Oracle Database creates a directory within the WALLET_ROOT
location for the keystore type. For example, if you set TDE_CONFIGURATION
to FILE
, for Transparent Data Encryption keystores, then Oracle Database creates a directory named tde
(lower case) within the wallet directory. If you want to migrate from one keystore type to another, then you must first set TDE_CONFIGURATION
parameter to the keystore type that you want to use, and then use the ADMINISTER KEY MANAGEMENT
statement to perform the migration. For example, you can migrate from a hardware security module (HSM) keystore to a TDE keystore.
The KEYSTORE_MODE
column of the V$ENCRYPTION_WALLET
dynamic view shows whether united mode or isolated mode has been configured.
Note:
In previous releases, theSQLNET.ENCRYPTION_WALLET_LOCATION
parameter was used to define the keystore directory location. This parameter has been deprecated. Oracle recommends that you use the WALLET_ROOT
static initialization parameter and TDE_CONFIGURATION
dynamic initialization parameter instead.
Related Topics
Parent topic: Configuring Transparent Data Encryption
Transparent Data Encryption Keystore Search Order
The search order for the TDE keystore depends on how you have set either the instance initialization parameters, the sqlnet.ora
parameters, or the environment variables.
Oracle Database retrieves the keystore by searching in these locations, in the following order:
-
The location set by the
WALLET_ROOT
instance initialization parameter, when theKEYSTORE_CONFIGURATION
attribute of theTDE_CONFIGURATION
initialization parameter is set toFILE
. Oracle recommends that you use this parameter to configure the keystore location. -
If the
KEYSTORE_CONFIGURATION
attribute of theTDE_CONFIGURATION
initialization parameter is not set toFILE
orWALLET_ROOT
is not set, then the location specified by theWALLET_LOCATION
setting in thesqlnet.ora
file. -
If
WALLET_ROOT
andWALLET_LOCATION
are not set, then the location specified by theENCRYPTION_WALLET_LOCATION
parameter (now deprecated in favor ofWALLET_ROOT
) in thesqlnet.ora
file. -
If none of these parameters are set, and if the
ORACLE_BASE
environment variable is set, then the$ORACLE_BASE/admin/db_unique_name/wallet
directory. IfORACLE_BASE
is not set, then$ORACLE_HOME/admin/db_unique_name/wallet
.
Parent topic: Configuring Transparent Data Encryption
Configuring a Software Keystore
A software keystore is a container for the master encryption key, and it resides in the software file system.
- About Configuring a Software Keystore
A software keystore is a container that stores the TDE master encryption key. - Step 1: Configure the Software Keystore Location and Type
You must configure the keystore location and type by settingWALLET_ROOT
ininit.ora
andTDE_CONFIGURATION
in the database instance. - Step 2: Create the Software Keystore
After you have specified a directory location for the software keystore, you can create the keystore. - Step 3: Open the Software Keystore
Depending on the type of keystore you create, you must manually open the keystore before you can use it. - Step 4: Set the TDE Master Encryption Key in the Software Keystore
Once the keystore is open, you can set a TDE master encryption key for it. - Step 5: Encrypt Your Data
Now that you have completed the keystore configuration, you can begin to encrypt data in the PDB.
Parent topic: Configuring Transparent Data Encryption
About Configuring a Software Keystore
A software keystore is a container that stores the TDE master encryption key.
Before you can configure the keystore, you first must define a location for it by setting the WALLET_ROOT
parameter in the init.ora
file. The database locates this keystore by first checking the WALLET_ROOT
setting. If this setting has not been created, then the database checks the sqlnet.ora
file. You can create other keystores, such as copies of the keystore and export files that contain keys, depending on your needs. If you must remove or delete the keystore that you configured in the WALLET_ROOT
location, then you must do so only after you have moved the TDE master encryption key in this keystore to another keystore. Then you must reset WALLET_ROOT
to point to the new location of the keystore.
After you configure the software keystore location using the WALLET_ROOT
parameter, you can log in to the database instance to create and open the keystore, and then set the TDE master encryption key. After you complete these steps, you can begin to encrypt data.
Parent topic: Configuring a Software Keystore
Step 1: Configure the Software Keystore Location and Type
You must configure the keystore location and type by setting WALLET_ROOT
in init.ora
and TDE_CONFIGURATION
in the database instance.
Parent topic: Configuring a Software Keystore
Step 2: Create the Software Keystore
After you have specified a directory location for the software keystore, you can create the keystore.
- About Creating Software Keystores
There are three different types of software keystores. - Creating a Password-Protected Software Keystore
A password-protected software keystore requires a user password, which is used to protect the keys and credentials stored in the keystore. - Creating an Auto-Login or a Local Auto-Login Software Keystore
As an alternative to password-protected keystores, you can create either an auto-login or local auto-login software keystore.
Parent topic: Configuring a Software Keystore
About Creating Software Keystores
There are three different types of software keystores.
You can create password-protected software keystores, auto-login software keystores, and local auto-login software keystores.
Be aware that executing the query SELECT * FROM V$ENCRYPTION_WALLET
will automatically open an auto-login software keystore. For example, suppose you have a password-protected keystore and an auto-login keystore. If the password-protected keystore is open and you close the password-protected keystore and then query the V$ENCRYPTION_WALLET
view, then the output will indicate that a keystore is open. However, this is because V$ENCRYPTION_WALLET
opened up the auto-login software keystore and then displayed the status of the auto-login keystore.
Related Topics
Parent topic: Step 2: Create the Software Keystore
Creating a Password-Protected Software Keystore
A password-protected software keystore requires a user password, which is used to protect the keys and credentials stored in the keystore.
-
Log in to the database instance as a user who has been granted the
ADMINISTER KEY MANAGEMENT
orSYSKM
privilege.For example:
sqlplus sec_admin as syskm Enter password: password Connected.
If SQL*Plus is already open and you had modified the
init.ora
file to set theWALLET_ROOT
parameter during this time, then reconnect to SQL*Plus. The database session must be changed before theinit.ora
changes can take effect. -
Create the keystore by using the following syntax:
ADMINISTER KEY MANAGEMENT CREATE KEYSTORE 'keystore_location' IDENTIFIED BY software_keystore_password;
In this specification:
-
keystore_location
is the path to the keystore directory location of the password-protected keystore for which you want to create the auto-login keystore (for example,/etc/ORACLE/WALLETS/orcl
). If the path that is set by theWALLET_ROOT
parameter is the path that you want to use, then you can omit thekeystore_location
setting.If you specify the
keystore_location
, then enclose it in single quotation marks (' '
). To find this location, you can query theWRL_PARAMETER
column of theV$ENCRYPTION_WALLET
view. (If the keystore was not created in the default location, then theSTATUS
column of theV$ENCRYPTION_WALLET
view isNOT_AVAILABLE
.) IfWALLET_ROOT
is set and you want to use the directory thatWALLET_ROOT
points to, then you can omit thekeystore_location
setting. -
software_keystore_password
is the password of the keystore that you, the security administrator, creates.
For example, to create the keystore in the
/etc/ORACLE/WALLETS/orcl
directory:ADMINISTER KEY MANAGEMENT CREATE KEYSTORE
'/etc/ORACLE/WALLETS/orcl
' IDENTIFIED BY password; keystore altered.After you run this statement, the
ewallet.p12
file, which is the keystore, appears in the keystore location. -
Parent topic: Step 2: Create the Software Keystore
Creating an Auto-Login or a Local Auto-Login Software Keystore
As an alternative to password-protected keystores, you can create either an auto-login or local auto-login software keystore.
Both of these keystores have system-generated passwords. They are also PKCS#12-based files. The auto-login software keystore can be opened from different computers from the computer where this keystore resides, but the local auto-login software keystore can only be opened from the computer on which it was created. Both the auto-login and local auto-login keystores are created from the password-protected software keystores.
-
Log in to the database instance as a user who has been granted the
ADMINISTER KEY MANAGEMENT
orSYSKM
privilege.For example:
sqlplus sec_admin as syskm Enter password: password Connected.
If SQL*Plus is already open and you had modified the
init.ora
file to set theWALLET_ROOT
parameter during this time, then reconnect to SQL*Plus. The database session must be changed before theinit.ora
changes can take effect. -
Create a password-protected software keystore.
For example:
ADMINISTER KEY MANAGEMENT CREATE KEYSTORE '/etc/ORACLE/WALLETS/orcl' IDENTIFIED BY keystore_password;
-
Create the auto-login or local auto-login keystore by using the following syntax:
ADMINISTER KEY MANAGEMENT CREATE [LOCAL] AUTO_LOGIN KEYSTORE FROM KEYSTORE 'keystore_location' IDENTIFIED BY software_keystore_password;
In this specification:
-
LOCAL
enables you to create a local auto-login software keystore. Otherwise, omit this clause if you want the keystore to be accessible by other computers. -
keystore_location
is the path to the directory location of the password-protected keystore for which you want to create the auto-login keystore (for example,/etc/ORACLE/WALLETS/orcl
). Enclose this setting in single quotation marks (' '
). To find this location, query theWRL_PARAMETER
column of theV$ENCRYPTION_WALLET
view. -
software_keystore_password
is the password-protected keystore for which you want to create the auto-login keystore.
For example, to create an auto-login software keystore of the password-protected keystore that is located in the
/etc/ORACLE/WALLETS/orcl
directory:ADMINISTER KEY MANAGEMENT CREATE AUTO_LOGIN KEYSTORE
FROM KEYSTORE '/etc/ORACLE/WALLETS/orcl
' IDENTIFIED BY password; keystore altered.After you run this statement, the
cwallet.sso
file appears in the keystore location. Theewallet.p12
file is the password-protected wallet. -
Follow these guidelines:
- Do not remove the
PKCS#12
wallet (ewallet.p12
file) after you create the auto-login keystore (.sso
file). You must have thePKCS#12
wallet to regenerate or rekey the TDE master encryption key in the future. By default, this file is located in theadmin/db_unique_name/wallet
directory of the$ORACLE_BASE
or$ORACLE_HOME
location. - Remember that Transparent Data Encryption uses an auto login keystore only if it is available at the correct location (
WALLET_ROOT
,WALLET_LOCATION
,ENCRYPTION_WALLET_LOCATION
, or the default keystore location), and the SQL statement to open an encrypted keystore has not already been executed. Note that auto-login keystores are encrypted, because they have system-generated passwords. If you have theENCRYPTION_WALLET_LOCATION
parameter set, then be aware this parameter is deprecated. Oracle recommends that you use theWALLET_ROOT
static initialization parameter andTDE_CONFIGURATION
dynamic initialization parameter instead.
Related Topics
Parent topic: Step 2: Create the Software Keystore
Step 3: Open the Software Keystore
Depending on the type of keystore you create, you must manually open the keystore before you can use it.
- About Opening Software Keystores
A password-protected software keystore must be open before any TDE master encryption keys can be created or accessed in the keystore. - Opening a Software Keystore
To open a software keystore, you must use theADMINISTER KEY MANAGEMENT
statement with theSET KEYSTORE OPEN
clause.
Parent topic: Configuring a Software Keystore
About Opening Software Keystores
A password-protected software keystore must be open before any TDE master encryption keys can be created or accessed in the keystore.
Many Transparent Data Encryption operations require the software keystore to be open. There are two ways that you can open the software keystore:
-
Manually open the keystore by issuing the
ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN
statement. Afterward, you can perform the operation. -
Include the
FORCE KEYSTORE
clause in theADMINISTER KEY MANAGEMENT
statement that is used to perform the operation.FORCE KEYSTORE
temporarily opens the keystore for the duration of the operation, and when the operation completes, the keystore is closed again.FORCE KEYSTORE
is useful for situations when the database is heavily loaded. In this scenario, because of concurrent access to encrypted objects in the database, the auto-login keystore continues to open immediately after it has been closed but before a user has had chance to open the password-based keystore.
Keystores can be in the following states: open, closed, open but with no master encryption key, open but with an unknown master encryption key, undefined, or not available (that is, not present in the WALLET_ROOT
location).
After you manually open a keystore, it remains open until you manually close it. Each time you restart a database instance, you must manually open the password keystore to reenable encryption and decryption operations.
You can check the status of whether a keystore is open or not by querying the STATUS
column of the V$ENCRYPTION_WALLET
view.
Opening a Software Keystore
To open a software keystore, you must use the ADMINISTER KEY MANAGEMENT
statement with the SET KEYSTORE OPEN
clause.
Note that if the keystore is open but you have not created a TDE master encryption key yet, the STATUS
column of the V$ENCRYPTION_WALLET
view reminds you with an OPEN_NO_MASTER_KEY
status.
Parent topic: Step 3: Open the Software Keystore
Step 4: Set the TDE Master Encryption Key in the Software Keystore
Once the keystore is open, you can set a TDE master encryption key for it.
- About Setting the Software Keystore TDE Master Encryption Key
The TDE master encryption key is stored in the keystore. - Setting the TDE Master Encryption Key in the Software Keystore
To set the TDE master encryption key in a software keystore, use theADMINISTER KEY MANAGEMENT
statement with theSET KEY
clause.
Parent topic: Configuring a Software Keystore
About Setting the Software Keystore TDE Master Encryption Key
The TDE master encryption key is stored in the keystore.
The TDE master encryption key protects the TDE table keys and tablespace encryption keys. By default, the TDE master encryption key is a key that TDE generates. You can find if a keystore has no TDE master encryption key set or an unknown TDE master encryption key by querying the STATUS
column of the V$ENCRYPTION_WALLET
view.
You can manually create a master encryption ID outside the database, which is useful for Cloud environments. You also can create TDE master encryption keys for use later on, and then manually activate them.
Setting the TDE Master Encryption Key in the Software Keystore
To set the TDE master encryption key in a software keystore, use the ADMINISTER KEY MANAGEMENT
statement with the SET KEY
clause.
-
Log in to the database instance as a user who has been granted the
ADMINISTER KEY MANAGEMENT
orSYSKM
privilege.For example:
sqlplus sec_admin as syskm Enter password: password Connected.
-
Ensure that the database is open in
READ WRITE
mode.You can set the TDE master encryption key if
OPEN_MODE
is set toREAD WRITE
. To find the status, query theOPEN_MODE
column of theV$DATABASE
dynamic view. (If you cannot access this view, then connect asSYSDBA
and try the query again. In order to connect asSYSKM
for this type of query, you must create a password file for it.) -
Set the TDE master encryption key in the software by using the following syntax:
ADMINISTER KEY MANAGEMENT SET KEY [USING TAG 'tag'] [FORCE KEYSTORE] IDENTIFIED BY [EXTERNAL STORE] | keystore_password [WITH BACKUP [USING 'backup_identifier']];
In this specification:
-
tag
is the associated attributes and information that you define. Enclose this setting in single quotation marks (' '
). -
FORCE KEYSTORE
temporarily opens the password-protected keystore for this operation. You must open the keystore for this operation. -
FORCE KEYSTORE
should be included if the keystore is closed. This automatically opens the keystore before setting the TDE master encryption key. TheFORCE KEYSTORE
clause also switches over to opening the password-protected software keystore when an auto-login keystore is configured and is currently open. -
IDENTIFIED BY
specifies the keystore password. Alternatively, if the keystore password is in an external store, you can use theIDENTIFIED BY EXTERNAL STORE
clause. -
WITH BACKUP
creates a backup of the keystore. You must use this option for password-protected keystores. Optionally, you can use theUSING
clause to add a brief description of the backup. Enclose this description in single quotation marks (' '
). This identifier is appended to the named keystore file (for example,ewallet_
time_stamp
_emp_key_backup.p12
, withemp_key_backup
being the backup identifier). Follow the file naming conventions that your operating system uses.
For example:
ADMINISTER KEY MANAGEMENT SET KEY FORCE KEYSTORE IDENTIFIED BY keystore_password WITH BACKUP USING 'emp_key_backup'; keystore altered.
-
Step 5: Encrypt Your Data
Now that you have completed the keystore configuration, you can begin to encrypt data in the PDB.
You can encrypt data in individual table columns or in entire tablespaces or databases.
Parent topic: Configuring a Software Keystore
Configuring a Hardware Keystore
A hardware keystore resides in a hardware security module (HSM), which is designed to store encryption keys.
- About Configuring a Hardware (External) Keystore
A hardware keystore, also called an external keystore, is a separate server or device that provides security storage for encryption keys. - Step 1: Configure the Hardware Keystore Type
You can configure the hardware keystore type by setting theTDE_CONFIGURATION
parameter. - Step 2: Configure the Hardware Security Module
To configure a third-party hardware security module, you must copy the PKCS#11 library to the correct location and follow your vendor's instructions. - Step 3: Open the Hardware Keystore
After you have configured the hardware security module, you must open the hardware keystore before it can be used. - Step 4: Set the Hardware Keystore TDE Master Encryption Key
After you have opened the hardware keystore, you are ready to set the hardware keystore TDE master encryption key. - Step 5: Encrypt Your Data
Now that you have completed the configuration for a hardware keystore or for an Oracle Key Vault keystore, you can begin to encrypt data.
Parent topic: Configuring Transparent Data Encryption
About Configuring a Hardware (External) Keystore
A hardware keystore, also called an external keystore, is a separate server or device that provides security storage for encryption keys.
External keystores are external to an Oracle database. Oracle Database can interface with external keystores but cannot manipulate them outside of the Oracle interface. The Oracle database can request the external keystore to create a key but it cannot define how this key is stored in an external database. (Conversely, for software keystores that are created using TDE, Oracle Database has full control: that is, you can use SQL statements to manipulate this type of keystore.) Examples of external keystores are hardware security modules or Oracle Key Vault keystores. External keystores among multiple databases can be managed centrally, such as with Oracle Key Vault.
To configure a keystore for a hardware security module (hardware keystore), you must first include the keystore type in the TDE_CONFIGURATION
parameter setting, configure and open the hardware keystore, and then set the hardware keystore TDE master encryption key. In short, there is one hardware keystore per database, and the database locates this keystore by checking the keystore type that you define in the TDE_CONFIGURATION
parameter.
How you specify the IDENTIFIED BY
clause when you run the ADMINISTER KEY MANAGEMENT
statement depends on the type of hardware keystore. In most cases, and in the examples throughout this guide, you would use the following syntax for a hardware security module (HSM
) or Cloud Key Management Service (KMS
) keystore:
IDENTIFIED BY "user_name:password"
However, depending on your site’s configuration of HSMs, the syntax for the credential may be “password:user_name”
.
For an Oracle Key Vault keystore, you can omit the user_name
and colon, but you must include the quotation marks:
IDENTIFIED BY "password"
After you configure the hardware keystore, you are ready to begin encrypting your data.
Parent topic: Configuring a Hardware Keystore
Step 1: Configure the Hardware Keystore Type
You can configure the hardware keystore type by setting the TDE_CONFIGURATION
parameter.
Parent topic: Configuring a Hardware Keystore
Step 2: Configure the Hardware Security Module
To configure a third-party hardware security module, you must copy the PKCS#11 library to the correct location and follow your vendor's instructions.
-
Copy the PKCS#11 library to its correct path.
Your hardware keystore vendor should provide you with an associated PKCS#11 library. Only one PKCS#11 library is supported at a time. If you want to use a hardware keystore from a new vendor, then you must replace the PKCS#11 library from the earlier vendor with the library from the new vendor.
Copy this library to the appropriate location to ensure that Oracle Database can find this library:
-
UNIX systems: Use the following syntax to copy the library to this directory:
/opt/oracle/extapi/[32,64]/hsm/{VENDOR}/{VERSION}/libapiname.so
-
Windows systems: Use the following syntax to copy the library to this directory:
%SYSTEM_DRIVE%\oracle\extapi\[32,64]\hsm\{VENDOR}\{VERSION}\libapiname.dll
In this specification:
-
[32,64]
specifies whether the supplied binary is 32 bits or 64 bits. -
VENDOR
stands for the name of the vendor supplying the library -
VERSION
refers to the version of the library. This should preferably be in the format,number.number.number
-
apiname
requires no special format. However, theapiname
must be prefixed with the wordlib
, as illustrated in the syntax.
-
-
Follow your vendor's instructions to set up the hardware keystore.
Use your hardware keystore management interface and the instructions provided by your HSM vendor to set up the hardware keystore. Create the user account and password that must be used by the database to interact with the hardware keystore. This process creates and configures a hardware keystore that communicates with your Oracle database.
Parent topic: Configuring a Hardware Keystore
Step 3: Open the Hardware Keystore
After you have configured the hardware security module, you must open the hardware keystore before it can be used.
- About Opening Hardware Keystores
You must open the hardware keystore so that it is accessible to the database before you can perform any encryption or decryption. - Opening a Hardware Keystore
To open a hardware keystore, use theADMINISTER KEY MANAGEMENT
statement with theSET KEYSTORE OPEN
clause.
Parent topic: Configuring a Hardware Keystore
About Opening Hardware Keystores
You must open the hardware keystore so that it is accessible to the database before you can perform any encryption or decryption.
If a recovery operation is needed on your database (for example, if the database was not cleanly shut down, and has an encrypted tablespace that needs recovery), then you must open the hardware keystore before you can open the database itself.
There are two ways that you can open the hardware keystore:
-
Manually open the keystore by issuing the
ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN
statement. Afterward, you can perform the operation. -
Include the
FORCE KEYSTORE
clause in theADMINISTER KEY MANAGEMENT
statement.FORCE KEYSTORE
temporarily opens the keystore for the duration of the operation, and when the operation completes, the keystore is closed again.FORCE KEYSTORE
is useful for situations when the database is heavily loaded. In this scenario, because of concurrent access to encrypted objects in the database, the auto-login keystore continues to open immediately after it has been closed but before a user has had a chance to open the password-based keystore.
To check the status of the keystore, query the STATUS
column of the V$ENCRYPTION_WALLET
view. Keystores can be in the following states: CLOSED
, NOT_AVAILABLE
(that is, not present in the WALLET_ROOT
location), OPEN
, OPEN_NO_MASTER_KEY
, OPEN_UNKNOWN_MASTER_KEY_STATUS
.
Be aware that for hardware keystores, if the database is in the mounted state, then it cannot check if the master key is set because the data dictionary is not available. In this situation, the status will be OPEN_UNKNOWN_MASTER_KEY_STATUS
.
Related Topics
Parent topic: Step 3: Open the Hardware Keystore
Opening a Hardware Keystore
To open a hardware keystore, use the ADMINISTER KEY MANAGEMENT
statement with the SET KEYSTORE OPEN
clause.
-
Log in to the database instance as a user who has been granted the
ADMINISTER KEY MANAGEMENT
orSYSKM
privilege.For example:
sqlplus sec_admin as syskm Enter password: password Connected.
-
Open the hardware keystore by using the following syntax:
ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN [FORCE KEYSTORE] IDENTIFIED BY "hardware_keystore_password";
In this specification:
-
FORCE KEYSTORE
enables the keystore operation if the keystore is closed. -
IDENTIFIED BY
can be one of the following settings:-
EXTERNAL STORE
uses the keystore password stored in the external store to perform the keystore operation. -
hardware_keystore_credentials
refers to the credentials for either an HSM or an Oracle Key Vault hardware keystore. For an HSM, specify the credentials using this format, enclosed in quotation marks and separating the components with a colon:“user_name:password”
, withuser_name
being the user who created the HSM and password being this user’s password. For Oracle Key Vault, enter only the password of the user who created the keystore. Enclose this password with quotation marks.
-
For example, for an HSM:
ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN IDENTIFIED BY "psmith:password"; keystore altered.
-
-
Repeat this procedure each time you restart the database instance.
Parent topic: Step 3: Open the Hardware Keystore
Step 4: Set the Hardware Keystore TDE Master Encryption Key
After you have opened the hardware keystore, you are ready to set the hardware keystore TDE master encryption key.
- About Setting the Hardware Keystore TDE Master Encryption Key
You must create a TDE master encryption key that is stored inside the hardware keystore. - Setting a New TDE Master Encryption Key
You should complete this procedure if you have not previously configured a hardware keystore for Transparent Data Encryption. - Migration of a Previously Configured TDE Master Encryption Key
You must migrate the previously configured TDE master encryption key if you previously configured a software keystore.
Parent topic: Configuring a Hardware Keystore
About Setting the Hardware Keystore TDE Master Encryption Key
You must create a TDE master encryption key that is stored inside the hardware keystore.
Oracle Database uses the master encryption key to encrypt or decrypt TDE table keys or tablespace encryption keys inside the hardware security module.
If you have not previously configured a software keystore for TDE, then you must set the master encryption key. If you have already configured a software keystore for TDE, then you must migrate it to the hardware security module.
Along with the current master encryption key, Oracle wallets maintain historical master encryption keys that are generated after every re-key operation that rekeys the master encryption key. These historical master keys help to restore Oracle database backups that were taken previously using one of the historical master encryption keys.
Setting a New TDE Master Encryption Key
You should complete this procedure if you have not previously configured a hardware keystore for Transparent Data Encryption.
-
Log in to the database instance as a user who has been granted the
ADMINISTER KEY MANAGEMENT
orSYSKM
privilege.For example:
sqlplus sec_admin as syskm Enter password: password Connected.
-
Ensure that the database is open in
READ WRITE
mode.You can set the master encryption key if
OPEN_MODE
is set toREAD WRITE
. To find the status, for a non-multitenant environment, query theOPEN_MODE
column of theV$DATABASE
dynamic view. If you are in a multitenant environment, then run theshow_pdbs
command. -
Set the new master encryption key by using the following syntax:
ADMINISTER KEY MANAGEMENT SET KEY [USING TAG 'tag'] [FORCE KEYSTORE] IDENTIFIED BY [EXTERNAL STORE | "hardware_keystore_credentials"];
In this specification:
-
tag
is the associated attributes and information that you define. Enclose this setting in single quotation marks (' '
). -
FORCE KEYSTORE
temporarily opens the password-protected keystore for this operation. You must open the keystore for this operation. -
IDENTIFIED BY
can be one of the following settings:-
EXTERNAL STORE
uses the keystore password stored in the external store to perform the keystore operation. -
hardware_keystore_credentials
refers to the credentials for either an HSM or an Oracle Key Vault hardware keystore. For an HSM, specify the credentials using this format, enclosed in quotation marks and separating the components with a colon:“user_name:password”
, withuser_name
being the user who created the HSM and password being this user’s password. For Oracle Key Vault, enter only the password of the user who created the keystore. Enclose this password with quotation marks.
-
For example:
ADMINISTER KEY MANAGEMENT SET KEY FORCE KEYSTORE IDENTIFIED BY "psmith:password"; keystore altered.
-
Migration of a Previously Configured TDE Master Encryption Key
You must migrate the previously configured TDE master encryption key if you previously configured a software keystore.
Tools such as Oracle Data Pump and Oracle Recovery Manager require access to the old software keystore to perform decryption and encryption operations on data exported or backed up using the software keystore. You can migrate from the software to the hardware keystore.
Along with the current master encryption key, Oracle keystores maintain historical master encryption keys that are generated after every re-key operation that rotates the master encryption key. These historical master encryption keys help to restore Oracle database backups that were taken previously using one of the historical master encryption keys.
Step 5: Encrypt Your Data
Now that you have completed the configuration for a hardware keystore or for an Oracle Key Vault keystore, you can begin to encrypt data.
Oracle Key Vault Administrator's Guide describes how to configure Oracle Key Vault keystores.
You can encrypt individual columns in a table or entire tablespaces.
Parent topic: Configuring a Hardware Keystore
Encrypting Columns in Tables
You can use Transparent Data Encryption to encrypt individual columns in database tables.
- About Encrypting Columns in Tables
You can encrypt individual columns in tables. - Data Types That Can Be Encrypted with TDE Column Encryption
Oracle Database supports a specific set of data types that can be used with TDE column encryption. - Restrictions on Using TDE Column Encryption
TDE column encryption is performed at the SQL layer. Oracle Database utilities that bypass the SQL layer cannot use TDE column encryption services. - Creating Tables with Encrypted Columns
Oracle Database provides a selection of different algorithms that you can use to define the encryption used in encrypted columns. - Encrypting Columns in Existing Tables
You can encrypt columns in existing tables. As with new tables, you have a choice of different algorithms to use to definite the encryption. - Creating an Index on an Encrypted Column
You can create an index on an encrypted column. - Adding Salt to an Encrypted Column
Salt, which is a random string added to data before encryption, is a way to strengthen the security of encrypted data. . - Removing Salt from an Encrypted Column
You can use the ALTER TABLE SQL statement to remove salt from an encrypted column. - Changing the Encryption Key or Algorithm for Tables with Encrypted Columns
You can use theALTER TABLE
SQL statement to change the encryption key or algorithm used in encrypted columns.
Parent topic: Configuring Transparent Data Encryption
About Encrypting Columns in Tables
You can encrypt individual columns in tables.
Whether you choose to encrypt individual columns or entire tablespaces depends on the data types that the table has. There are also several features that do not support TDE column encryption.
Data Types That Can Be Encrypted with TDE Column Encryption
Oracle Database supports a specific set of data types that can be used with TDE column encryption.
You can encrypt data columns that use a variety of different data types.
Supported data types are as follows:
-
BINARY_DOUBLE
-
BINARY_FLOAT
-
CHAR
-
DATE
-
INTERVAL DAY TO SECOND
-
INTERVAL YEAR TO MONTH
-
NCHAR
-
NUMBER
-
NVARCHAR2
-
RAW
(legacy or extended) -
TIMESTAMP
(includesTIMESTAMP WITH TIME ZONE
andTIMESTAMP WITH LOCAL TIME ZONE
) -
VARCHAR2
(legacy or extended)
If you want to encrypt large binary objects (LOBs), then you can use Oracle SecureFiles. Oracle SecureFiles enables you to store LOB data securely. To encrypt a LOB using SecureFiles, you use the CREATE TABLE
or ALTER TABLE
statements.
You cannot encrypt a column if the encrypted column size is greater than the size allowed by the data type of the column.
Table 3-1 shows the maximum allowable sizes for various data types.
Table 3-1 Maximum Allowable Size for Data Types
Data Type | Maximum Size |
---|---|
|
1932 bytes |
|
3932 bytes |
|
32,699 bytes |
|
1966 bytes |
|
16,315 bytes |
|
966 bytes |
|
32,699 bytes |
Note:
TDE tablespace encryption does not have these data type restrictions.
Restrictions on Using TDE Column Encryption
TDE column encryption is performed at the SQL layer. Oracle Database utilities that bypass the SQL layer cannot use TDE column encryption services.
Do not use TDE column encryption with the following database features:
-
Index types other than B-tree
-
Range scan search through an index
-
Synchronous change data capture
-
Transportable tablespaces
-
Columns that have been created as identity columns
In addition, you cannot use TDE column encryption to encrypt columns used in foreign key constraints.
Applications that must use these unsupported features can use the DBMS_CRYPTO
PL/SQL package for their encryption needs.
Transparent Data Encryption protects data stored on a disk or other media. It does not protect data in transit. Use the network encryption solutions discussed in Oracle Database Security Guide to encrypt data over the network.
Creating Tables with Encrypted Columns
Oracle Database provides a selection of different algorithms that you can use to define the encryption used in encrypted columns.
- About Creating Tables with Encrypted Columns
You can use theCREATE TABLE
SQL statement to create a table with an encrypted column. - Creating a Table with an Encrypted Column Using the Default Algorithm
By default, TDE uses theAES
encryption algorithm with a 192-bit key length (AES192
). - Creating a Table with an Encrypted Column Using No Algorithm or a Non-Default Algorithm
You an use theCREATE TABLE
SQL statement to create a table with an encrypted column. - Using the NOMAC Parameter to Save Disk Space and Improve Performance
You can bypass checks that TDE performs. This can save up to 20 bytes of disk space per encrypted value. - Example: Using the NOMAC Parameter in a CREATE TABLE Statement
You can use the CREATE TABLE SQL statement to encrypt a table column using the NOMAC parameter. - Example: Changing the Integrity Algorithm for a Table
You can use the ALTER TABLE SQL statement to change the integrity algorithm for a database table. - Creating an Encrypted Column in an External Table
The external table feature enables you to access data in external sources as if the data were in a database table.
Parent topic: Encrypting Columns in Tables
About Creating Tables with Encrypted Columns
You can use the CREATE TABLE
SQL statement to create a table with an encrypted column.
To create relational tables with encrypted columns, you can specify the SQL ENCRYPT
clause when you define database columns with the CREATE TABLE
SQL statement.
Parent topic: Creating Tables with Encrypted Columns
Creating a Table with an Encrypted Column Using the Default Algorithm
By default, TDE uses the AES
encryption algorithm with a 192-bit key length (AES192
).
If you encrypt a table column without specifying an algorithm, then the column is encrypted using the AES192
algorithm.
TDE adds salt to plaintext before encrypting it. Adding salt makes it harder for attackers to steal data through a brute force attack. TDE also adds a Message Authentication Code (MAC) to the data for integrity checking. The SHA-1
integrity algorithm is used by default.
-
To create a table that encrypts a column, use the
CREATE TABLE
SQL statement with theENCRYPT
clause.For example, to encrypt a table column using the default algorithm:
CREATE TABLE employee ( first_name VARCHAR2(128), last_name VARCHAR2(128), empID NUMBER, salary NUMBER(6) ENCRYPT);
This example creates a new table with an encrypted column (
salary
). The column is encrypted using the default encryption algorithm (AES192
). Salt and MAC are added by default. This example assumes that the keystore is open and a master encryption key is set.
Note:
If there are multiple encrypted columns in a table, then all of these columns must use the same pair of encryption and integrity algorithms.
Salt is specified at the column level. This means that an encrypted column in a table can choose not to use salt irrespective of whether or not other encrypted columns in the table use salt.
Parent topic: Creating Tables with Encrypted Columns
Creating a Table with an Encrypted Column Using No Algorithm or a Non-Default Algorithm
You an use the CREATE TABLE
SQL statement to create a table with an encrypted column.
By default, TDE adds salt to plaintext before encrypting it. Adding salt makes it harder for attackers to steal data through a brute force attack. However, if you plan to index the encrypted column, then you must use the NO SALT
parameter.
-
To create a table that uses an encrypted column that is a non-default algorithm or no algorithm, run the
CREATE TABLE
SQL statement as follows:-
If you do not want to use any algorithm, then include the
ENCRYPT NO SALT
clause. -
If you want to use a non-default algorithm, then use the
ENCRYPT USING
clause, followed by one of the following algorithms enclosed in single quotation marks:-
3DES168
-
AES128
-
AES192
(default) -
AES256
-
-
The following example shows how to specify encryption settings for the empID
and salary
columns.
CREATE TABLE employee ( first_name VARCHAR2(128), last_name VARCHAR2(128), empID NUMBER ENCRYPT NO SALT, salary NUMBER(6) ENCRYPT USING '3DES168');
In this example:
-
The
empID
column is encrypted and does not use salt. Both theempID
andsalary
columns will use the3DES168
encryption algorithm, because all of the encrypted columns in a table must use the same encryption algorithm. -
The
salary
column is encrypted using the3DES168
encryption algorithm. Note that the string that specifies the algorithm must be enclosed in single quotation marks (' '). Thesalary
column uses salt by default.
Parent topic: Creating Tables with Encrypted Columns
Using the NOMAC Parameter to Save Disk Space and Improve Performance
You can bypass checks that TDE performs. This can save up to 20 bytes of disk space per encrypted value.
If the number of rows and encrypted columns in the table is large, then bypassing TDE checks can add up to a significant amount of disk space. In addition, this saves processing cycles and reduces the performance overhead associated with TDE.
TDE uses the SHA-1
integrity algorithm by default. All of the encrypted columns in a table must use the same integrity algorithm. If you already have a table column using the SHA-1
algorithm, then you cannot use the NOMAC
parameter to encrypt another column in the same table.
-
To bypass the integrity check during encryption and decryption operations, use the
NOMAC
parameter in theCREATE TABLE
andALTER TABLE
statements.
Parent topic: Creating Tables with Encrypted Columns
Example: Using the NOMAC Parameter in a CREATE TABLE Statement
You can use the CREATE TABLE SQL statement to encrypt a table column using the NOMAC parameter.
Example 3-1 creates a table with an encrypted column. The empID
column is encrypted using the NOMAC
parameter.
Example 3-1 Using the NOMAC parameter in a CREATE TABLE statement
CREATE TABLE employee (
first_name VARCHAR2(128),
last_name VARCHAR2(128),
empID NUMBER ENCRYPT 'NOMAC' ,
salary NUMBER(6));
Parent topic: Creating Tables with Encrypted Columns
Example: Changing the Integrity Algorithm for a Table
You can use the ALTER TABLE SQL statement to change the integrity algorithm for a database table.
Example 3-2 shows how to change the integrity algorithm for encrypted columns in a table. The encryption algorithm is set to 3DES168
and the integrity algorithm is set to SHA-1
. The second ALTER TABLE
statement sets the integrity algorithm to NOMAC
.
Example 3-2 Changing the Integrity Algorithm for a Table
ALTER TABLE EMPLOYEE REKEY USING '3DES168' 'SHA-1'; ALTER TABLE EMPLOYEE REKEY USING '3DES168' 'NOMAC';
Parent topic: Creating Tables with Encrypted Columns
Creating an Encrypted Column in an External Table
The external table feature enables you to access data in external sources as if the data were in a database table.
External tables can be updated using the ORACLE_DATAPUMP
access driver.
-
To encrypt specific columns in an external table, use the
ENCRYPT
clause when you define those columns:A system-generated key encrypts the columns. For example, the following
CREATE TABLE
SQL statement encrypts thessn
column using the3DES168
algorithm:CREATE TABLE emp_ext ( first_name, .... ssn ENCRYPT USING '3DES168', ....
If you plan to move an external table to a new location, then you cannot use a randomly generated key to encrypt the columns. This is because the randomly generated key will not be available at the new location.
For such scenarios, you should specify a password while you encrypt the columns. After you move the data, you can use the same password to regenerate the key required to access the encrypted column data at the new location.
Table partition exchange also requires a password-protected TDE table key.
Example 3-3 creates an external table using a password to create the TDE table key.
Example 3-3 Creating a New External Table with a Password-Generated TDE Table Key
CREATE TABLE emp_ext ( first_name, last_name, empID, salary, ssn ENCRYPT IDENTIFIED BY password ) ORGANIZATION EXTERNAL ( TYPE ORACLE_DATAPUMP DEFAULT DIRECTORY "D_DIR" LOCATION('emp_ext.dat') ) REJECT LIMIT UNLIMITED AS SELECT * FROM EMPLOYEE;
Parent topic: Creating Tables with Encrypted Columns
Encrypting Columns in Existing Tables
You can encrypt columns in existing tables. As with new tables, you have a choice of different algorithms to use to definite the encryption.
- About Encrypting Columns in Existing Tables
TheALTER TABLE
SQL statement enables you to encrypt columns in an existing table. - Adding an Encrypted Column to an Existing Table
You can encrypt columns in existing tables, use a different algorithm, and useNO SALT
to index the column. - Encrypting an Unencrypted Column
You can use theALTER TABLE MODIFY
statement to encrypt an existing unencrypted column. - Disabling Encryption on a Column
You may want to disable encryption for reasons of compatibility or performance.
Parent topic: Encrypting Columns in Tables
About Encrypting Columns in Existing Tables
The ALTER TABLE
SQL statement enables you to encrypt columns in an existing table.
To add an encrypted column to an existing table, or to encrypt or decrypt an existing column, you use the ALTER TABLE
SQL statement with the ADD
or MODIFY
clause.
Parent topic: Encrypting Columns in Existing Tables
Adding an Encrypted Column to an Existing Table
You can encrypt columns in existing tables, use a different algorithm, and use NO SALT
to index the column.
-
To add an encrypted column to an existing table, use the
ALTER TABLE ADD
statement, specifying the new column with theENCRYPT
clause.
Example 3-4 adds an encrypted column, ssn
, to an existing table, called employee
. The ssn
column is encrypted with the default AES192
algorithm. Salt and MAC are added by default.
Example 3-4 Adding an Encrypted Column to an Existing Table
ALTER TABLE employee ADD (ssn VARCHAR2(11) ENCRYPT);
Parent topic: Encrypting Columns in Existing Tables
Encrypting an Unencrypted Column
You can use the ALTER TABLE MODIFY
statement to encrypt an existing unencrypted column.
-
To encrypt an existing unencrypted column, use the
ALTER TABLE MODIFY
statement, specifying the unencrypted column with theENCRYPT
clause.
The following example encrypts the first_name
column in the employee
table. The first_name
column is encrypted with the default AES192
algorithm. Salt is added to the data, by default. You can encrypt the column using a different algorithm. If you want to index a column, then you must specify NO SALT
. You can also bypass integrity checks by using the NOMAC
parameter.
ALTER TABLE employee MODIFY (first_name ENCRYPT);
The following example encrypts the first_name
column in the employee table using the NOMAC
parameter.
ALTER TABLE employee MODIFY (first_name ENCRYPT 'NOMAC');
Parent topic: Encrypting Columns in Existing Tables
Disabling Encryption on a Column
You may want to disable encryption for reasons of compatibility or performance.
-
To disable column encryption, use the
ALTER TABLE MODIFY
command with theDECRYPT
clause.
Example 3-5 decrypts the first_name
column in the employee
table.
Example 3-5 Turning Off Column Encryption
ALTER TABLE employee MODIFY (first_name DECRYPT);
Parent topic: Encrypting Columns in Existing Tables
Creating an Index on an Encrypted Column
You can create an index on an encrypted column.
The column being indexed must be encrypted without salt. If the column is encrypted with salt, then the ORA-28338: cannot encrypt indexed column(s) with salt
error is raised.
-
To create an index on an encrypted column, use the
CREATE INDEX
statement with theENCRYPT NO SALT
clause.
Example 3-6 shows how to create an index on a column that has been encrypted without salt.
Example 3-6 Creating Index on a Column Encrypted Without Salt
CREATE TABLE employee (
first_name VARCHAR2(128),
last_name VARCHAR2(128),
empID NUMBER ENCRYPT NO SALT,
salary NUMBER(6) ENCRYPT USING '3DES168');
CREATE INDEX employee_idx on employee (empID);
Parent topic: Encrypting Columns in Tables
Adding Salt to an Encrypted Column
Salt, which is a random string added to data before encryption, is a way to strengthen the security of encrypted data. .
Salt ensures that the same plaintext data does not always translate to the same encrypted text. Salt removes the one common method that intruders use to steal data, namely, matching patterns of encrypted text. Adding salt requires an additional 16 bytes of storage per encrypted data value.
-
To add or remove salt from encrypted columns, use the
ALTER TABLE MODIFY
SQL statement.
For example, suppose you want to encrypt the first_name
column using salt. If the first_name
column was encrypted without salt earlier, then the ALTER TABLE MODIFY
statement reencrypts it using salt.
ALTER TABLE employee MODIFY (first_name ENCRYPT SALT);
Parent topic: Encrypting Columns in Tables
Removing Salt from an Encrypted Column
You can use the ALTER TABLE SQL statement to remove salt from an encrypted column.
-
To remove salt from an encrypted column, use the
ENCRYPT NO SALT
clause in the ALTER TABLE SQL statement.
For example, suppose you wanted to remove salt from the first_name
column. If you must index a column that was encrypted using salt, then you can use this statement to remove the salt before indexing
ALTER TABLE employee MODIFY (first_name ENCRYPT NO SALT);
Parent topic: Encrypting Columns in Tables
Changing the Encryption Key or Algorithm for Tables with Encrypted Columns
You can use the ALTER TABLE
SQL statement to change the encryption key or algorithm used in encrypted columns.
Each table can have only one TDE table key for its columns. You can regenerate the TDE table key with the ALTER TABLE
statement. This process generates a new key, decrypts the data in the table using the previous key, reencrypts the data using the new key, and then updates the table metadata with the new key information. You can also use a different encryption algorithm for the new TDE table key.
-
To change the encryption key or algorithm for tables that contain encrypted columns, use the
ALTER TABLE
SQL statement with theREKEY
orREKEY USING
clause.
For example:
ALTER TABLE employee REKEY;
Example 3-7 regenerates the TDE table key for the employee
table by using the 3DES168
algorithm.
Example 3-7 Changing an Encrypted Table Column Encryption Key and Algorithm
ALTER TABLE employee REKEY USING '3DES168';
Parent topic: Encrypting Columns in Tables
Encryption Conversions for Tablespaces and Databases
You can perform encryption operations on both offline and online tablespaces and databases.
- About Encryption Conversion for Tablespaces and Databases
TheCREATE TABLESPACE
SQL statement can be used to encrypt new tablespaces.ALTER TABLESPACE
can encrypt existing tablespaces. - Impact of a Closed TDE Keystore on Encrypted Tablespaces
A TDE keystore can be closed or migrated when an Oracle-managed tablespace is encrypted, and the database system itself must be shut down to disallow operations on an Oracle-managed tablespace. - Restrictions on Using Transparent Data Encryption Tablespace Encryption
You should be aware of restrictions on using Transparent Data Encryption when you encrypt a tablespace. - Creating an Encrypted New Tablespace
When you create a new tablespace, you can configure its encryption settings during the creation process. - Encrypting Future Tablespaces
You can configure Oracle Database to automatically encrypt future tablespaces that you will create. - Encrypted Sensitive Credential Data in the Data Dictionary
You can encrypt sensitive credential data in theSYS.LINK$
andSYS.SCHEDULER$_CREDENTIAL
system tables. - Encryption Conversions for Existing Offline Tablespaces
You can perform offline encryption conversions by using theALTER TABLESPACE
SQL statementOFFLINE
,ENCRYPT
, andDECRYPT
clauses. - Encryption Conversions for Existing Online Tablespaces
You can encrypt and decrypt an online existing tablespace by using theALTER TABLESPACE
SQL statement with theONLINE
andENCRYPT
orDECRYPT
clauses. - Encryption Conversions for Existing Databases
You can encrypt both offline and online databases.
Parent topic: Configuring Transparent Data Encryption
About Encryption Conversion for Tablespaces and Databases
The CREATE TABLESPACE
SQL statement can be used to encrypt new tablespaces. ALTER TABLESPACE
can encrypt existing tablespaces.
In addition to encrypting new and existing tablespaces, you can encrypt full databases, which entails the encryption of the Oracle-managed tablespaces (in this release, the SYSTEM
, SYSAUX
, TEMP
, and UNDO
tablespaces). To encrypt a full database, you use the ALTER TABLESPACE
statement, not ALTER DATABASE
, to encrypt the Oracle-managed tablespaces.
The following table compares the differences between an offline and an online encryption conversion of tablespaces and databases.
Table 3-2 Offline and Online Tablespace and Database Encryption Conversions
Functionality | Offline Conversion | Online Conversion |
---|---|---|
Release with minimum conversion capability |
Oracle Database 11g release 2 (11.2) |
Oracle Database 12c release 2 (12.2) and later |
What can be backported? |
The ability to encrypt or decrypt a data file with the
AES128 algorithm (using or DECRYPT ) can be used in Oracle Database releases 12.1.0.2 and 11.2.0.4.
|
No |
Algorithms supported |
All symmetric encryption algorithms that TDE supports. See Supported Encryption and Integrity Algorithms. See also About Encryption Conversion for Existing Offline Tablespaces. |
All symmetric encryption algorithm that TDE supports. See Supported Encryption and Integrity Algorithms. See also About Encryption Conversion for Existing Online Tablespaces. |
When can the conversion be run? |
When the tablespace is offline or the database is in the mount stage. |
When the tablespace is online and database is open in read/write mode. |
Is auxiliary space required for the conversion? |
No |
Yes. See Encrypting an Existing Tablespace with Online Conversion for guidelines. |
Oracle Data Guard conversion guidelines |
Convert both the primary and standby manually. Convert the standby first and then switch over to minimum downtime |
After you convert the primary, the standby conversion takes place automatically. You cannot perform an online conversion directly on the standby. |
Encrypt the |
Oracle Database 12c release 2 (12.2) and later only. You must set |
Oracle Database 12c release 2 (12.2) and later only. You must set |
Can an existing |
No, but you can create an encrypted |
No, but you can create an encrypted |
Can an existing tablespace be decrypted? |
You only can decrypt a tablespace or data file that was previously encrypted by an offline encrypt operation. Oracle does not recommend that you decrypt the |
Yes, but Oracle does not recommend that you decrypt the |
Can encryption keys be rekeyed? |
No, but after the tablespace is encrypted, you can then use online conversion to rekey in Oracle Database 12c release 2 (12.2) compatibility. |
Yes |
Can encryption operations be run in parallel? |
You can run parallel encryption conversions at the data file level with multiple user sessions running. |
You can run parallel encryption conversions at the tablespace level with multiple user sessions running. |
What to do if an encryption conversion SQL statement fails to complete? |
Re-issue the encryption or decryption SQL statement to ensure that all the data files within the tablespace are consistently either encrypted or decrypted. |
Rerun the SQL statement but use the |
Parent topic: Encryption Conversions for Tablespaces and Databases
Impact of a Closed TDE Keystore on Encrypted Tablespaces
A TDE keystore can be closed or migrated when an Oracle-managed tablespace is encrypted, and the database system itself must be shut down to disallow operations on an Oracle-managed tablespace.
A closed TDE keystore has no impact on operations that involve an encrypted Oracle-managed tablespace (in this release, the SYSTEM
, SYSAUX
, TEMP
, and UNDO
tablespaces). This enables operations that are performed by background processes (for example, the log writer) to continue to work on these tablespaces while the TDE keystore is closed. If you want to disallow operations on an encrypted Oracle-managed tablespace, then you must shut down the database.
With regard to user-created tablespaces, a closed TDE keystore causes operations such as rotating a key or decrypting the tablespace to fail with an ORA-28365 wallet is not open
error, just as it did in earlier releases. If you want to disallow operations on the user-created tablespace, then close the TDE keystore (or shut down the database).
User-created data can be copied into an encrypted Oracle-managed tablespace (for example, by an internal process such as DBMS_STATS
statistics gathering) from a user-created tablespace while the TDE keystore is open. Closing the keystore does not prevent a user from viewing this data afterward, when the TDE keystore is in the CLOSED
state at the time that you query the V$ENCRYPTION_WALLET
view. Access to the original data by attempting to query an encrypted user-created tablespace will fail, resulting in an ORA-28365 wallet is not open
error.
Table 3-3 describes the operations that are necessary to disallow or allow operations on encrypted data in user-created tablespaces and Oracle-managed tablespaces. For example, in the first scenario, both the user-created tablespaces and the Oracle-managed tablespaces are encrypted. In this case, for the encrypted data in the encrypted user-created tablespace, an administrator can close or open keystores, and shut down and open a database with an encrypted user-created tablespace. When an encrypted Oracle-managed tablespace is configured, the administrator can disallow operations by shutting down the database, and can allow operations by starting up in mount mode, opening the TDE keystore, and then opening the database. (It is necessary to open the TDE keystore before opening the database because the system may need the TDE master encryption key to decrypt the bootstrap dictionary tables, which are located in the encrypted Oracle-managed tablespace.) The N/A flags in this table refer to non-encrypted data, which you can always operate on, unless the instance is shut down.
Table 3-3 Necessary Commands to Disallow or Allow Operations on Encrypted Data
Tablespace Encryption Scenarios | Commands to Disallow Operations on Encrypted User-Created Tablespace Data | Commands to Disallow Operations on Encrypted Oracle-Managed Tablespace Data | Commands to Allow Operations on Encrypted User-Created Tablespace Data | Commands to Allow Operations on Encrypted Oracle-Managed Tablespace Data |
---|---|---|---|---|
Both user-created and Oracle-managed tablespaces encrypted |
|
SHUTDOWN |
|
|
User tablespace encrypted; Oracle-managed tablespace not encrypted |
|
N/A |
|
N/A |
User tablespace not encrypted; Oracle-managed tablespace encrypted | N/A | SHUTDOWN |
N/A |
|
Neither user nor Oracle-managed tablespaces encrypted | N/A | N/A | N/A | N/A |
Parent topic: Encryption Conversions for Tablespaces and Databases
Restrictions on Using Transparent Data Encryption Tablespace Encryption
You should be aware of restrictions on using Transparent Data Encryption when you encrypt a tablespace.
Note the following restrictions:
-
Transparent Data Encryption (TDE) tablespace encryption encrypts or decrypts data during read and write operations, as opposed to TDE column encryption, which encrypts and decrypts data at the SQL layer. This means that most restrictions that apply to TDE column encryption, such as data type restrictions and index type restrictions, do not apply to TDE tablespace encryption.
-
To perform import and export operations, use Oracle Data Pump.
See Also:
Oracle Database Utilities for more information about Oracle Data PumpParent topic: Encryption Conversions for Tablespaces and Databases
Creating an Encrypted New Tablespace
When you create a new tablespace, you can configure its encryption settings during the creation process.
- Step 1: Set the COMPATIBLE Initialization Parameter for Tablespace Encryption
You must set theCOMPATIBLE
initialization parameter before creating an encrypted tablespace. - Step 2: Set the Tablespace TDE Master Encryption Key
You should ensure that you have configured the TDE master encryption key. - Step 3: Create the Encrypted Tablespace
After you have set theCOMPATIBLE
initialization parameter, you are ready to create the encrypted tablespace.
Parent topic: Encryption Conversions for Tablespaces and Databases
Step 1: Set the COMPATIBLE Initialization Parameter for Tablespace Encryption
You must set the COMPATIBLE
initialization parameter before creating an encrypted tablespace.
- About Setting the COMPATIBLE Initialization Parameter for Tablespace Encryption
A minimumCOMPATIBLE
initialization parameter setting of11.2.0.0
enables the full set of tablespace encryption features. - Setting the COMPATIBLE Initialization Parameter for Tablespace Encryption
To set theCOMPATIBLE
initialization parameter, you must edit the initialization parameter file for the database instance.
Parent topic: Creating an Encrypted New Tablespace
About Setting the COMPATIBLE Initialization Parameter for Tablespace Encryption
A minimum COMPATIBLE
initialization parameter setting of 11.2.0.0
enables the full set of tablespace encryption features.
Setting the compatibility to 11.2.0.0
enables the following functionality:
-
The
11.2.0.0
setting enables the database to use any of the four supported algorithms for data encryption (3DES168
,AES128
,AES192
, andAES256
). -
The
11.2.0.0
setting enables the migration of a key from a software keystore to a hardware keystore (ensure that the TDE master encryption key was configured for the hardware keystore) -
The
11.2.0.0
setting enables rekeying the TDE master encryption key
Be aware that once you set the COMPATIBLE
parameter to 11.2.0.0
, the change is irreversible. To use tablespace encryption, ensure that the compatibility setting is at the minimum, which is 11.2.0.0
.
See Also:
-
Oracle Database SQL Language Reference for more information about the
COMPATIBLE
parameter -
Oracle Database Administrator’s Guide for more information about initialization parameter files
Setting the COMPATIBLE Initialization Parameter for Tablespace Encryption
To set the COMPATIBLE
initialization parameter, you must edit the initialization parameter file for the database instance.
-
Log in to the database instance.
In a multitenant environment, log in to the PDB. For example:
sqlplus sec_admin@hrpdb Enter password: password Connected.
To find the available PDBs, run the
show pdbs
command. To check the current PDB, run theshow con_name
command. -
Check the current setting of the
COMPATIBLE
parameter.For example:
SHOW PARAMETER COMPATIBLE NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ compatible string 11.2.0.0 noncdbcompatible BOOLEAN FALSE
-
If you must change the
COMPATIBLE
parameter, then complete the remaining steps in this procedure.The value should be 11.2.0.0 or higher.
-
From the command line, locate the initialization parameter file for the database instance.
-
UNIX systems: This file is in the
ORACLE_HOME
/dbs
directory and is namedinit
ORACLE_SID
.ora
(for example,initmydb.ora
). -
Windows systems: This file is in the
ORACLE_HOME
\database
directory and is namedinit
ORACLE_SID
.ora
(for example,initmydb.ora
).
-
-
Edit the initialization parameter file to use the new
COMPATIBLE
setting.For example:
compatible=12.2.0.0.0
-
In SQL*Plus, connect as a user who has the
SYSDBA
administrative privilege, and then restart the database.For example:
CONNECT /AS SYSDBA SHUTDOWN STARTUP
If tablespace encryption is in use, then open the keystore at the database mount. The keystore must be open before you can access data in an encrypted tablespace.
For example:
STARTUP MOUNT; ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN IDENTIFIED BY keystore_password; ALTER DATABASE OPEN;
Step 2: Set the Tablespace TDE Master Encryption Key
You should ensure that you have configured the TDE master encryption key.
-
Set the TDE master encryption key as follows:
-
For software TDE master encryption keys, see Step 4: Set the TDE Master Encryption Key in the Software Keystore.
-
For hardware TDE master encryption keys, see Step 4: Set the Hardware Keystore TDE Master Encryption Key.
-
Parent topic: Creating an Encrypted New Tablespace
Step 3: Create the Encrypted Tablespace
After you have set the COMPATIBLE
initialization parameter, you are ready to create the encrypted tablespace.
- About Creating Encrypted Tablespaces
To create an encrypted tablespace, you can use theCREATE TABLESPACE
SQL statement. - Creating an Encrypted Tablespace
To create an encrypted tablespace, you must use theCREATE TABLESPACE
statement with theENCRYPTION USING
clause. - Example: Creating an Encrypted Tablespace That Uses AES192
You can use theCREATE TABLESPACE
SQL statement to create an encrypted tablespace. - Example: Creating an Encrypted Tablespace That Uses the Default Algorithm
You can use theCREATE TABLESPACE
SQL statement to create an encrypted tablespace that uses the default algorithm.
Parent topic: Creating an Encrypted New Tablespace
About Creating Encrypted Tablespaces
To create an encrypted tablespace, you can use the CREATE TABLESPACE
SQL statement.
You must have the CREATE TABLESPACE
system privilege to create an encrypted tablespace.
You can import data into an encrypted tablespace by using Oracle Data Pump. You can also use a SQL statement such as CREATE TABLE...AS SELECT...
or ALTER TABLE...MOVE...
to move data into an encrypted tablespace. The CREATE TABLE...AS SELECT...
statement creates a table from an existing table. The ALTER TABLE...MOVE...
statement moves a table into the encrypted tablespace.
For security reasons, you cannot encrypt a tablespace with the NO SALT
option.
You can query the ENCRYPTED
column of the DBA_TABLESPACES
and USER_TABLESPACES
data dictionary views to verify if a tablespace was encrypted.
See Also:
Oracle Database Reference for more information about the DBA_TABLESPACES
and USER_TABLESPACES
data dictionary views
Parent topic: Step 3: Create the Encrypted Tablespace
Creating an Encrypted Tablespace
To create an encrypted tablespace, you must use the CREATE TABLESPACE
statement with the ENCRYPTION USING
clause.
-
Log in to the database instance as a user who has been granted the
CREATE TABLESPACE
system privilege.In a multitenant environment, log in to the PDB. For example:
sqlplus sec_admin@hrpdb as syskm Enter password: password Connected.
To find the available PDBs, run the
show pdbs
command. To check the current PDB, run theshow con_name
command. -
Run the
CREATE TABLESPACE
statement, using its encryption clauses.For example:
CREATE TABLESPACE encrypt_ts DATAFILE '$ORACLE_HOME/dbs/encrypt_df.dbf' SIZE 1M ENCRYPTION USING 'AES256' ENCRYPT;
In this specification:
-
ENCRYPTION USING 'AES256' ENCRYPT
specifies the encryption algorithm and the key length for the encryption. TheENCRYPT
clause encrypts the tablespace. Enclose this setting in single quotation marks (' '). The key lengths are included in the names of the algorithms. If you do not specify an encryption algorithm, then the default encryption algorithm,AES128
, is used.
-
Example: Creating an Encrypted Tablespace That Uses AES192
You can use the CREATE TABLESPACE
SQL statement to create an encrypted tablespace.
Example 3-8 creates a tablespace called securespace_1
that is encrypted using the AES192
algorithm. The key length is 192 bits.
Example 3-8 Creating an Encrypted Tablespace That Uses AES192
CREATE TABLESPACE securespace_1 DATAFILE '/home/user/oradata/secure01.dbf' SIZE 150M ENCRYPTION USING 'AES192' ENCRYPT;
Parent topic: Step 3: Create the Encrypted Tablespace
Example: Creating an Encrypted Tablespace That Uses the Default Algorithm
You can use the CREATE TABLESPACE
SQL statement to create an encrypted tablespace that uses the default algorithm.
Example 3-9 creates a tablespace called securespace_2
. Because no encryption algorithm is specified, the default encryption algorithm (AES128
) is used. The key length is 128 bits.
You cannot encrypt an existing tablespace.
Example 3-9 Creating an Encrypted Tablespace That Uses the Default Algorithm
CREATE TABLESPACE securespace_2 DATAFILE '/home/user/oradata/secure01.dbf' SIZE 150M ENCRYPTION ENCRYPT;
Parent topic: Step 3: Create the Encrypted Tablespace
Encrypting Future Tablespaces
You can configure Oracle Database to automatically encrypt future tablespaces that you will create.
- About Encrypting Future Tablespaces
The ability to encrypt future tablespaces can help prevent data breaches in Oracle Cloud environments. - Setting Future Tablespaces to be Encrypted
You can set theENCRYPT_NEW_TABLESPACES
database initialization parameter to automatically encrypt future tablespaces that you create.
Parent topic: Encryption Conversions for Tablespaces and Databases
About Encrypting Future Tablespaces
The ability to encrypt future tablespaces can help prevent data breaches in Oracle Cloud environments.
The ENCRYPT_NEW_TABLESPACES
database initialization parameter controls how future databases are encrypted.
You can create and run an Oracle database completely in Oracle Cloud. Because this configuration hosts the customer’s data in the Cloud, Oracle recommends that you enable encryption as much as possible. A long-term goal is to encrypt all data in Oracle Cloud. Alternatively, you can have the database both in the Cloud and on premises.
In an Oracle Cloud environment, the following scenarios may occur when you create encrypted tablespaces in Oracle Cloud and on-premises environments:
-
You create a test database in Oracle Cloud and the tablespaces were encrypted by using when the
ENCRYPT_NEW_TABLESPACE
parameter has been set to automatically create the Cloud database as encrypted. However, you may not have the intention or even an Advanced Security Option license to bring the encrypted database back on premises. -
You create a hybrid definer’s rights environment where the primary database is on premises and the standby database is on Oracle Cloud. If a switchover operation takes place, then the new primary is on Oracle Cloud. If a new tablespace is transparently encrypted, then a similar scenario to the first item in this list may occur. For example, suppose you do not have an Advanced Security Option (ASO) license, and you have an automatically encrypted tablespace in the Oracle Cloud. The standby database on premises is also automatically encrypted. In this case, because you do not have an ASO license, you cannot use the standby database. To remedy this problem, set the
ENCRYPT_NEW_TABLESPACES
to DDL, which prevents the encryption of the tablespace in Oracle Cloud.
Parent topic: Encrypting Future Tablespaces
Setting Future Tablespaces to be Encrypted
You can set the ENCRYPT_NEW_TABLESPACES
database initialization parameter to automatically encrypt future tablespaces that you create.
Related Topics
Parent topic: Encrypting Future Tablespaces
Encrypted Sensitive Credential Data in the Data Dictionary
You can encrypt sensitive credential data in the SYS.LINK$
and SYS.SCHEDULER$_CREDENTIAL
system tables.
By default, the credential data in the SYS.LINK$
and SYS.SCHEDULER$_CREDENTIAL
system tables is obfuscated. However, because of the availability of many types of de-obfuscation algorithms, Oracle recommends that you encrypt this sensitive credential data. To check the status the data dictionary credentials, you can query the DICTIONARY_CREDENTIALS_ENCRYPT
data dictionary view.
The encryption of sensitive credential data in these two system tables uses Transparent Data Encryption. Encryption of credential data uses the AES256 algorithm. To encrypt credential data, you do not need an Oracle Advanced Security Option license, but you must be granted the SYSKM
administrative privilege and the database must have an open keystore.
Related Topics
Parent topic: Encryption Conversions for Tablespaces and Databases
Encryption Conversions for Existing Offline Tablespaces
You can perform offline encryption conversions by using the ALTER TABLESPACE
SQL statement OFFLINE
, ENCRYPT
, and DECRYPT
clauses.
- About Encryption Conversion for Existing Offline Tablespaces
You can encrypt or decrypt an existing data file of a user tablespace when the tablespace is offline or when the database is not open. - Encrypting an Existing User-Defined Tablespace with Offline Conversion
To encrypt an existing tablespace with offline conversion, you can use theALTER TABLESPACE
SQL statement with theOFFLINE
andENCRYPT
clauses. - Decrypting an Existing Tablespace with Offline Conversion
To decrypt an existing tablespace with offline conversion, you can use theALTER TABLESPACE
SQL statement with theOFFLINE
andDECRYPT
clauses.
Parent topic: Encryption Conversions for Tablespaces and Databases
About Encryption Conversion for Existing Offline Tablespaces
You can encrypt or decrypt an existing data file of a user tablespace when the tablespace is offline or when the database is not open.
Use the offline encryption method if you do not plan to change the compatibility of your databases from Oracle Database 11c release 2 (11.2) or Oracle Database 12c release 1 (12.1) to release 18c, which is irreversible. The offline encryption method is also useful if you want to quickly make use of Transparent Data Encryption before you upgrade this database to release 18c. You can both encrypt and decrypt offline tablespaces.
Note the following:
-
If you want to encrypt the Oracle Database-supplied tablespaces (
SYSTEM
,SYSAUX
, andUNDO
) using the offline conversion method, then you must use the method that is described in Encrypting an Existing Database with Offline Conversion. -
You can use the online method to rekey a tablespace that was previously encrypted with the offline method.
-
If you have configured Oracle Data Guard, you can minimize downtime by encrypting the tablespaces on the standby first, switching over to the primary, and then encrypting the tablespaces on the primary.
-
You can use the
USING ... ENCRYPT
clause to specify an encryption algorithm. Supported algorithms includeAES128
,AES192
,AES256
, and others, such asARIA
andGOST
. To check the encryption key, query theENCRYPTIONALG
column in theV$DATABASE_KEY_INFO
view. -
You can use the
ALTER TABLESPACE
statement to convert offline tablespaces in parallel by using multiple foreground sessions to encrypt different data files. -
If you are using Oracle Data Guard, you can minimize the downtime by encrypting the tablespaces on the standby first, switching over, and then encrypting the tablespaces on the original primary next.
-
For Oracle Database 11g release 2 (11.2.0.4) and Oracle Database 12c release 1 (12.1.0.2), you cannot perform an offline encryption of the
SYSTEM
andSYSAUX
tablespaces. Also, Oracle does not recommend encrypting offline theUNDO
tablespace in these releases. Doing so prevents the keystore from being closed, and this prevents the database from functioning. In addition, encrypting theUNDO
tablespace while the database is offline is not necessary because all undo records that are associated with any encrypted tablespaces are already automatically encrypted in theUNDO
tablespace. If you want to encrypt theTEMP
tablespace, you must drop and then recreate it as encrypted.
Related Topics
Parent topic: Encryption Conversions for Existing Offline Tablespaces
Encrypting an Existing User-Defined Tablespace with Offline Conversion
To encrypt an existing tablespace with offline conversion, you can use the ALTER TABLESPACE
SQL statement with the OFFLINE
and ENCRYPT
clauses.
SYSTEM
and UNDO
tablespaces cannot be brought offline. If you want to encrypt the tablespaces offline, then you must use the method that is described in Encrypting an Existing Database with Offline Conversion.
Decrypting an Existing Tablespace with Offline Conversion
To decrypt an existing tablespace with offline conversion, you can use the ALTER TABLESPACE
SQL statement with the OFFLINE
and DECRYPT
clauses.
Related Topics
Parent topic: Encryption Conversions for Existing Offline Tablespaces
Encryption Conversions for Existing Online Tablespaces
You can encrypt and decrypt an online existing tablespace by using the ALTER TABLESPACE
SQL statement with the ONLINE
and ENCRYPT
or DECRYPT
clauses.
- About Encryption Conversion for Existing Online Tablespaces
You can encrypt, decrypt, or rekey existing user tablespaces, and theSYSTEM
,SYSAUX
, andUNDO
tablespace when they are online. - Encrypting an Existing Tablespace with Online Conversion
To encrypt an existing tablespace with online conversion, useALTER TABLESPACE
with theONLINE
andENCRYPT
clauses. - Rekeying an Existing Tablespace with Online Conversion
To rekey an existing tablespace that is online, you can use theREKEY
clause of theALTER TABLESPACE
SQL statement. - Decrypting an Existing Tablespace with Online Conversion
To decrypt an existing tablespace with online conversion, you can use theALTER TABLESPACE
SQL statement withDECRYPT
clause. - Finishing an Interrupted Online Encryption Conversion
If an online encryption process is interrupted, then you can complete the conversion by rerunning theALTER TABLESPACE
statement using theFINISH
clause.
Parent topic: Encryption Conversions for Tablespaces and Databases
About Encryption Conversion for Existing Online Tablespaces
You can encrypt, decrypt, or rekey existing user tablespaces, and the SYSTEM
, SYSAUX
, and UNDO
tablespace when they are online.
However, you cannot encrypt, decrypt, or rekey a temporary tablespace online.
An online tablespace can be created by using the ONLINE
clause of the CREATE TABLESPACE
SQL statement. When you encrypt or rekey a tablespace online, the tablespace will have its own independent encryption keys and algorithms.
Note the following:
-
If an offline tablespace has been encrypted, then you can rekey it online to use a different algorithm.
-
You can encrypt multiple tablespaces online in parallel by using multiple foreground sessions to encrypt different tablespaces. Within each tablespace, the data files are encrypted sequentially.
-
If the conversion is interrupted, then you can resume the process by issuing the
FINISH
clause of theALTER TABLESPACE
SQL statement. -
A redo log is generated for each online tablespace conversion.
-
Do not encrypt the
SYSTEM
andUNDO
tablespaces concurrently with other tablespaces. -
You cannot use the transportable tablespace feature with Oracle Data Pump while you are encrypting a tablespace.
-
You cannot run the
ALTER TABLESPACE
statement concurrently with the following features:-
ADMINSTER KEY MANAGEMENT SET KEY
SQL statement -
FLASHBACK DATABASE
SQL statement
-
-
If you are using Oracle-managed files for the data files, then the encryption process rekeys the data files that are associated with the tablespace and then copies or moves them to the default Oracle-managed files location.
-
You can add new files to the tablespace after you have encrypted it. Oracle Database reformats the new file with the new encryption key. Blocks will be encrypted using the new key.
-
Previous operations that took place in the root or the PDB may require the control files to be cross-checked against the data dictionary before you can begin the online conversion process. An
ORA-241 operation disallowed: control file is not yet checked against data dictionary
error may occur. To resolve this problem, restart the root or PDB, and then try issuing the online conversion commands again. - For security reasons, once online conversion processes a data file, Oracle will zero out the original data file before deletion. This prevents the database from leaving ghost data on disk sectors. However, there is a known limitation that can occur if you are performing an online tablespace conversion at the same time that Oracle Recovery Manager (Oracle RMAN) is validating files. The online tablespace conversion processes each file one at a time. If Oracle RMAN is validating a file at the same time that it is being processed by the online tablespace conversion, then Oracle RMAN could report a corruption problem (
ORA-01578: ORACLE data block corrupted (file # , block # )
). It does this because it sees the blocks that comprise the file as zero. This is a false alarm and you can ignore the error. If this occurs, then try running the Oracle RMAN validation process again.
Related Topics
Parent topic: Encryption Conversions for Existing Online Tablespaces
Encrypting an Existing Tablespace with Online Conversion
To encrypt an existing tablespace with online conversion, use ALTER TABLESPACE
with the ONLINE
and ENCRYPT
clauses.
STATUS
column of the V$ENCRYPTED_TABLESPACES
dynamic view. The ENCRYPTIONALG
column of this view shows the encryption algorithm that is used. If the conversion process was interrupted, then you can resume it by running ALTER TABLESPACE
with the FINISH
clause. For example, if the primary data file converts but the standby data file does not, then you can run ALTER TABLESPACE ... FINISH
on the standby database for the standby data files.
Rekeying an Existing Tablespace with Online Conversion
To rekey an existing tablespace that is online, you can use the REKEY
clause of the ALTER TABLESPACE
SQL statement.
-
You cannot rekey the
TEMP
tablespace. If you want to assign a different encryption algorithm to aTEMP
tablespace, then dropTEMP
and recreate it with the correct encryption algorithm. -
Do not perform an online tablespace rekey operation with a master key operation concurrently. To find if any tablespaces are currently being rekeyed, issue the following query to find the rekey status of encrypted tablespaces:
SELECT TS#,ENCRYPTIONALG,STATUS FROM V$ENCRYPTED_TABLESPACES;
A status of
REKEYING
means that the corresponding tablespace is still being rekeyed. Do not rekey the master key while this status is in effect.
To rekey an existing tablespace with online conversion:
ALTER TABLESPACE
with the FINISH
clause.
Decrypting an Existing Tablespace with Online Conversion
To decrypt an existing tablespace with online conversion, you can use the ALTER TABLESPACE
SQL statement with DECRYPT
clause.
ALTER TABLESPACE
with the FINISH
clause.
Finishing an Interrupted Online Encryption Conversion
If an online encryption process is interrupted, then you can complete the conversion by rerunning the ALTER TABLESPACE
statement using the FINISH
clause.
ORA-28425: missing a valid FILE_NAME_CONVERT clause
error in the FILE_NAME_CONVERT
clause of the ALTER TABLESPACE
SQL statement. Other examples of interrupted processes are if the conversion skips a data file, which can happen if there is an error when an Oracle DataBase WRiter (DBWR) process offlines a data file, or if there is not enough space for the auxiliary file. The tablespace should be operational even if you do not rerun the ALTER TABLESPACE
statement with the FINISH
clause.
Parent topic: Encryption Conversions for Existing Online Tablespaces
Encryption Conversions for Existing Databases
You can encrypt both offline and online databases.
- About Encryption Conversions for Existing Databases
The encryption conversion of an entire database encrypts all tablespaces, including the Oracle-suppliedSYSTEM
,SYSAUX
,UNDO
, andTEMP
tablespaces. - Encrypting an Existing Database with Offline Conversion
When you encrypt an existing database with offline conversion, for the Oracle-managed tablespaces, you do not specify an encryption algorithm. - Encrypting an Existing Database with Online Conversion
When you encrypt an existing database with online conversion, you do not specify an encryption algorithm.
Parent topic: Encryption Conversions for Tablespaces and Databases
About Encryption Conversions for Existing Databases
The encryption conversion of an entire database encrypts all tablespaces, including the Oracle-supplied SYSTEM
, SYSAUX
, UNDO
, and TEMP
tablespaces.
Note the following:
-
To perform the encryption, you can use the offline and online functionality of the tablespace encryption conversions.
-
You can encrypt any or all of the Oracle-supplied tablespaces, and in any order. The encryption of the Oracle-supplied tablespaces has no impact on the encryption of user-created tablespaces.
-
When you encrypt the Oracle-supplied tablespaces, Oracle Database prevents the keystore from being closed.
-
You cannot encrypt an existing temporary tablespace, but you can drop the existing temporary tablespace and then recreate it as encrypted.
-
The
UNDO
andTEMP
metadata that is generated from sensitive data in an encrypted tablespace is already automatically encrypted. Therefore, encryptingUNDO
andTEMP
is optional. -
Oracle recommends that you encrypt the Oracle-supplied tablespaces by using the default tablespace encryption algorithm,
AES128
. However, you can rekey any of these tablespaces afterwards to use a different encryption algorithm if you want. (To find the current encryption key for the current database, you can query theV$DATABASE_KEY_INFO
dynamic view.) -
The performance effect of encrypting all the tablespaces in a database depends on the workload and platform. Many modern CPUs provide built-in hardware acceleration, which results in a minimal performance impact.
-
In a multitenant environment, you can encrypt any tablespaces in any pluggable databases (PDBs), including the Oracle-supplied tablespaces. However, the keystore in the CDB root must be open at all times so that a PDB can open its keystore. You can check the status of whether a keystore is open by querying the
STATUS
column of theV$ENCRYPTION_WALLET
view
Parent topic: Encryption Conversions for Existing Databases
Encrypting an Existing Database with Offline Conversion
When you encrypt an existing database with offline conversion, for the Oracle-managed tablespaces, you do not specify an encryption algorithm.
SYSTEM
, SYSAUX
, and UNDO
tablespaces, then you must use online conversion. In addition to AES128
, supported encryption algorithms are AES192
and AES256
, in addition to other algorithms such as ARIA
and GOST
.
Encrypting an Existing Database with Online Conversion
When you encrypt an existing database with online conversion, you do not specify an encryption algorithm.
ALTER TABLESPACE ENCRYPTION REKEY
SQL statement after the initial encryption.
Related Topics
Parent topic: Encryption Conversions for Existing Databases
Transparent Data Encryption Data Dynamic and Data Dictionary Views
You can query a set of dynamic and data dictionary views to find more information about Transparent Data Encryption (TDE) data.
Table 3-4 describes these dynamic and data dictionary views.
Table 3-4 Transparent Data Encryption Related Views
View | Description |
---|---|
|
Displays encryption information about encrypted columns in the tables accessible to the current user |
|
Displays encryption information for all of the encrypted columns in the database |
|
Displays encryption information for encrypted table columns in the current user's schema |
|
Describes tablespace usage metrics for all types of tablespaces, including permanent, temporary, and undo tablespaces |
|
Lists the properties of the strings (secrets) that were stored in the keystore for various features (clients). In a multitenant environment, when you query this view in a PDB, then it displays information about keys that were created or activated for the current PDB. If you query this view in the root, then it displays this information about keys for all of the PDBs. |
|
Displays information about the default encryption key that is used for the current database. The default is |
|
Displays information about the tablespaces that are encrypted |
|
When used with keys that have been rekeyed with the In a multitenant environment, when you query this view in a PDB, it displays information about keys that were created or activated for the current PDB. If you query this view in the root, it displays this information about keys for all of the PDBs. |
|
Displays information on the status of the keystore and the keystore location for TDE |
|
Displays metadata information for a PKI certificate, which can be used as a master encryption key for TDE |
See Also:
Oracle Database Reference for detailed information about these views
Parent topic: Configuring Transparent Data Encryption