Page 1 of 1

Decrypt password

Posted: Mon Jan 20, 2003 9:25 am
by Exelsia
How can I decrypt a password, which was encrypted using the simple "password"-method of PHP/MySQL ?

Posted: Mon Jan 20, 2003 9:37 am
by twigletmac
You can't, that method is a one way hash (like the md5() function in PHP) so you can compare two encryted values to see if they are the same but cannot just decrypt the data.

Mac