How to decrypt MD5 in Ruby?

Viewed 21135

Possible Duplicate:
Is it possible to decrypt md5 hashes?

I do this in Ruby:

Digest::MD5.hexdigest("Jose")

and get "70483b6e100c9cebbffcdc62dea07eda"

But, how do I decrypt it back to "Jose"?

3 Answers
Related