MD5 Encryption and Decryption

Sep 6, 2014 at 8:53am
Hi, how to do encrypt and decrypt the text by using md5 algorithm without using the any library? Only implement in c++ program.
Sep 6, 2014 at 8:57am
MD5 is a hash algorithm, not an encryption algorithm. Hashes are irreversible.
Sep 6, 2014 at 8:58am
md5 is not an encryption algorithm. It's a hash algorithm. A hash only goes one way, so you can't normally restore the original data from it.
Sep 6, 2014 at 8:58am
closed account (z05DSL3A)
MD5 is a one way hash, it does not encrypt and decrypt text.

-----===#===------
Handbook of Applied Cryptography
http://cacr.uwaterloo.ca/hac/
Last edited on Sep 6, 2014 at 9:10am
Sep 9, 2014 at 1:26pm
Thanks guys. i understand the md5 hash algorithm
Topic archived. No new replies allowed.