I have database entry for password in md5 format, but when user uses the "Forgot password" then how can i give him/her the desired password?
feedback
|
|
You can't do that from an MD5 hash; nor should you be able to. Password recovery ought to be intractable. The usual process is to send a password-reset token (URL) to their email address so that the user can choose a new password. | ||||
|
feedback
|
|
You can't do it without putting the password in the database, which is undesirable, but you can generate him/her a new password and send it to them. Or a link where they can reset their password. | |||
|
feedback
|
|
You can't - MD5 is simply a "one way" hash - not a means of encrypting data that can subsequently be de-crypted. As such, the general idea is to:
The user can then log-in and access the site as per usual. | |||
feedback
|
|
You got a 1/100 chance of recovering that password (dictionary method) given the length of the password. I won't recommend it. It's better to generate a new random password, and send it to the user's email. | |||||||
feedback
|
|
you have to send a Thanks. | |||
|
feedback
|