I need to use a password to login to MySQL DB. But the password is stored in AES encryption algorithm.
The login will be:
AES_PASSWORD=2hhbdhbdhbdbh (the encrypted password in AES)
mysql -uroot -p$(AES_PASSWORD)
How do I decrypt this in shell and use it? I searched in other similar queries, and couldn't find anything related to AES.