diff --git a/CHANGELOG.md b/CHANGELOG.md index 87a4d9a..cec6b69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [1.1.0] - 2023-08-30 + +### Added + +- add script *idenc_wroot.sql* to initialize init.ora parameter WALLET_ROOT for + TDE with software keystore. +- add script *csenc_master.sql* to create master encryption key for TDE. + Configured keystore must be set before hand e.g., with *csenc_swkeystore.sql*. + Works for CDB as well PDB. +- add script *csenc_swkeystore.sql* to create TDE software keystore and master + encryption key in CDB$ROOT in the WALLET_ROOT directory. +- add script *ddenc_wroot.sql* to reset init.ora parameter WALLET_ROOT for TDE. + This script should run in CDB$ROOT. A manual restart of the database is + mandatory to activate WALLET_ROOT +- add script *idenc_lostkey.sql* to set hidden parameter *_db_discard_lost_masterkey* + to force discard of lost master keys +- add script *idenc_tde_pdbiso.sql* to initialize TDE in a PDB in isolation mode + i.e., with a dedicated wallet in WALLET_ROOT for this pdb. The CDB must be + configured for TDE beforehand. This scripts does use several other scripts to + enable TDE and it also includes **restart** of the pdb. +- add script *idenc_tde_pdbuni.sql* to initialize TDE in a PDB in united mode + i.e., with a common wallet of the CDB in WALLET_ROOT. The CDB must be + configured for TDE beforehand. This scripts does use several other scripts to + enable TDE and it also includes **restart** of the pdb. +- add script *idenc_tde.sql* to initialize TDE for a single tenant or container + database. This scripts does use several other scripts to enable TDE and it + also includes **restart** of the database. +- add script *ssenc_info* to show information about the TDE Configuration. + +### Changed + +- update [README.md](sql/README.md) with information for latest scripts. ## [1.0.0] - 2023-08-29 diff --git a/VERSION b/VERSION index 0ec25f7..795460f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.0.0 +v1.1.0