In this blog we are going to explore about innodb tablespace encryption technique, which will be useful for securing data.
In MySQL 5.7, a new feature “Innodb Tablespace Encryption“has been added to protect the data at rest. This is a most awaited feature in security. This encryption supports all file per table tablespaces and it will not support shared tablespace. This encryption technique works on the basis of rotating key files. There are two types of keyring plugins available for the key management and they are given below
- keyring_file plugin – Available in all MySQL versions.
- keyring_okv plugin – Available in MySQL Enterprise Edition.
Architecture:
Innodb tablespace encryption uses two tier encryption architecture, in which it has master encryption key …
[Read more]