Jump to content

[SOLVED] is there any way to un-md5 the encoded password??


yami007

Recommended Posts

No, md5() is a one way hash. It is not encoding/encryption, so it is not possible to decode/decrypt it.

 

You must use a lost password system where you generate a new one and send it to the user or use a "security question" to allow them to directly enter a new password while on the site.

md5 doesn't encrypypt the password, it hashes it. The difference is that encrypted data can be decrypted to reveal the original value, hashed data cannot.

 

When you hash a password using md5 (or sha1, or other hashing algorithm) you can't recover the original password. If the user forgets their password, you generate a new password for them, and let them know what that new password is.... then force them to reset to a password of their choice the next time they log in.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.