Possible Duplicate:
Is it possible to decrypt md5 hashes?
I accidentally encrypted some data with the md5 encryption
. I need to recover it. How can I decrypt the md5 encrypted data?
Possible Duplicate:
Is it possible to decrypt md5 hashes?
I accidentally encrypted some data with the md5 encryption
. I need to recover it. How can I decrypt the md5 encrypted data?
md5 is a hashing technique. You cannot decrypt it back.Hashing means, once you are converted it to a encrypted code, you cannot go back! But you can still compare the md5 encrypted value with the another md5 encrypted value to check matches (mostly in the case of password verification and all!)
No, it's not possible in general. MD5 is not an encryption algorithm. Multiple strings map to the same hash. It's impossible to know which of these strings is the "correct" one.
You can however try to use an online database to find a string that gives the correct hash:
It cannot be done. But perhaps some reverse-MD5 indexes have your data, coincidentally. Try this:
Brute force. Not ideal but if you have a general idea of what the string might be, it could work.