I believe in newer versions of MySQL , DES functions are now depreciated.
Would like to know if AES will be an option going forward or InnoDB Tablespace Encryption for AwareIM.
Taken from MySQL:
Starting with MySQL 5.7.6, the following functions are now deprecated:
DES_ENCRYPT
DES_DECRYPT
ENCRYPT
DES (Data Encryption Standard) is known to be less secure and slower than other available encryption methods. There are also many well known attack methods that can be used against it.
AES (Advanced Encryption Standard) was the chosen successor to DES. It provides better security and performance, thus obsoleting the older DES based functions. MySQL provides the following AES functions:
AES_ENCRYPT
AES_DECRYPT
When using the AES functions, you can also use the block_encryption_mode session variable to configure the following AES parameters:
Block encryption mode
Key size
Initialization vector
We recommend that users stop using the deprecated DES based functions and switch to AES functions as soon as possible.