2.396 TDE_CONFIGURATION
Use TDE_CONFIGURATION
to set the type of keystore that is used for Transparent Data Encryption (TDE) by the root container; united PDBs inherit the value from the root container, isolated PDBs can be set individually.
Before Oracle Database 18c, each PDB stored its separate encryption keys in the CDB’s keystore (united mode). Starting with Oracle Database 18c Cloud environments, a PDB can optionally store its encryption keys in a separate keystore (isolated mode), thus allowing protection by a separate keystore password. Starting with Oracle Database 19c, version 19.14, isolated mode is available for all Oracle database deployments, including on-premises databases, legacy deployments, and engineered systems.
The WALLET_ROOT
initialization parameter must be set in order for TDE_CONFIGURATION
to take effect.
Property | Description |
---|---|
Parameter type |
String |
Syntax |
|
Syntax |
value ::=
Notes:
|
Default value |
None |
Modifiable |
|
Modifiable in a PDB |
Yes |
Basic |
No |
Oracle RAC |
The same value must be specified on all instances using the |
Footnote 1
In some cases, when this parameter is set using ALTER SYSTEM SCOPE=SPFILE
, the SHOW PARAMETER TDE_CONFIGURATION
statement does not show the correct value. However, the value set for TDE_CONFIGURATION
can be derived from information shown in the V$ENCRYPTION_WALLET
view.
The following attributes can be specified:
-
KEYSTORE_CONFIGURATION
attribute. This attribute is required. The value specified with this attribute configures the keystore type for the specified PDB. The following values can be specified for this attribute:-
FILE
: This value configures a wallet keystore. -
OKV
: This value configures the database to use Oracle Key Vault (OKV) for TDE key management.This value is also used to disable an auto-login OKV configuration and cause any existing
cwallet.sso
files, containing the credentials to the OKV server as theOKV_PASSWORD
client secret, to be ignored. -
HSM
: This value configures a hardware security module (HSM).Oracle does not support the use of HSMs for TDE key management. For more information, see My Oracle Support note 2310066.1 "Oracle TDE Support With 3rd Party HSM Vendors" at the following URL: https://support.oracle.com/rs?type=doc&id=2310066.1
-
FILE|OKV
: This value configures a reverse migration from OKV to a wallet keystore. -
FILE|HSM
: This value configures a reverse migration from a HSM to a wallet keystore. -
OKV|FILE
: This value configures a migration from a wallet to OKV.This value is also used in an auto-login OKV configuration, because in this configuration a
cwallet.sso
file, containing theOKV_PASSWORD
client secret, must be used by the Oracle server to obtain the credentials to log in to the OKV server. -
HSM|FILE
: This value configures a migration from a wallet to a HSM.Oracle does not support the use of HSMs for TDE key management. For more information, see My Oracle Support note 2310066.1 "Oracle TDE Support With 3rd Party HSM Vendors" at the following URL: https://support.oracle.com/rs?type=doc&id=2310066.1
Some of the
KEYSTORE_CONFIGURATION
attribute values consist of a single word, for example, theFILE
,OKV
, andHSM
values. The otherKEYSTORE_CONFIGURATION
attribute values consist of two words separated by the "|" character that is a required part of the value’s syntax, for example, theFILE|OKV
,FILE|HSM
,OKV|FILE
, andHSM|FILE
values. -
-
CONTAINER
attribute: This optional attribute can be used only when setting the parameter in theCDB$ROOT
of a CDB. TheCONTAINER
attribute can be specified only when theCDB$ROOT
is inMOUNTED
state. With this attribute, you must specify the name of the PDB for which you are setting the parameter. When you specify theCONTAINER
attribute, you must use a semicolon ";" as the separation character between theKEYSTORE_CONFIGURATION
andCONTAINER
attributes.
Examples
The following statement configures a wallet keystore for the open PDB from which the statement is issued:
ALTER SYSTEM SET TDE_CONFIGURATION="KEYSTORE_CONFIGURATION=FILE" SCOPE=BOTH SID='*';
The following statement configures an OKV keystore for the PDB in MOUNTED
state from which the statement is issued:
ALTER SYSTEM SET TDE_CONFIGURATION="KEYSTORE_CONFIGURATION=OKV" SCOPE=SPFILE SID='*';
The following statement configures an isolated standby PDB for an auto-open Oracle Key Vault setup; standby PDBs are MOUNTED
, so the command must be executed in the standby root CDB:
ALTER SYSTEM SET TDE_CONFIGURATION="KEYSTORE_CONFIGURATION=OKV|FILE; CONTAINER=FINANCIALS" SCOPE=both SID='*';
See Also:
-
Oracle Database Advanced Security Guide for information about managing keystores and encryption keys in united mode
-
Oracle Database Advanced Security Guide for information about managing keystores and encryption keys in isolated mode