Decrypt MD5 hash

ha22109 picture ha22109 · Oct 13, 2009 · Viewed 29.7k times · Source

Possible Duplicate:
Is it possible to decrypt md5 hashes?

Is there any way to decrypt the encrypted MD5 string, given the key?

Answer

Asaph picture Asaph · Oct 13, 2009

MD5 is a one-way hash. It cannot be decrypted. The closest thing to decrypting an MD5 hash would be to do a lookup against a pre-generated rainbow table. Also, I'm not sure what you mean by "I have the key". There is no "key" in an MD5 hash. Perhaps you are thinking of a salt? If your data has a salt value incorporated prior to hashing, the rainbow table approach probably won't be practical anyway.