Quote Originally Posted by MunchSoft View Post
Where would I find the key that is used to encrypt/decrypt the passwords?
The answer is here:
Quote Originally Posted by DrByte View Post
Zen Cart encryption uses MD5+SALT... you can see the logic in the includes/functions/password_funcs.php file in case you need to re-use that intelligence to keep passwords sync'd using same encryption methods
- retrieve the password from the database
- pass the typed-in-password and the retrieved password to the zen_validate_password() function. It'll compare them and return a result.
- if it returns true, it's a match.