Passwords are built in asset that stores user account details. The password
part of a Password is stored in the database using reversible encryption.
The reversible encryption of the database uses the
PASSWORD_KEY
,PASSWORD_SALT
andPASSWORD_IV
environment variables to encrypt the password using theaes-192-cbc
algorithm. You can see the encryption code in crypto.server.ts. Make sure that you have a backup of the KEY, SALT and IV as your encrypted passwords will be useless without them.