?
2010-04-08 22:49:02 UTC
i want to decrypt joomla password.
i encrypt that password using joomla default encryption method.
Password Encryption Process is as below:
$pass="123456";
$salt = JUserHelper::genRandomPassword(32);
$crypt = JUserHelper::getCryptedPassword($pass, $salt);
$pass = $crypt.':'.$salt;
Result is : 54995924276873e5180ad0227bb28ca8:y2OIA3KH6nlw0aiVcEi7kUzuDAolqSH2
now i want to decrypt this encrypted password.
i want decrypted result is = 123456
please let me know process for this
please help me how can i solve this problem.
please give me some example for this.