I have saved user passwords in MD5 form in my database, now I want to send password to users in plaintext, is there any way I can convert an MD5 string to plaintext?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Md5 is a hashing algorithm. There is no way to retrieve the original input from the hashed result.
If you want to add a “forgotten password?” feature, you could send your user an email with a temporary link to create a new password.
Note: Sending passwords in plain text is a BAD idea 🙂