http://qs321.pair.com?node_id=139482


in reply to big important text encryption with MD5 or something else?

Short answer : You can't !

MD5 stands for Message Digest 5
It's a one way fonction which computes a text's digest.
You can't decrypt a MD5 digest.
You usually use it to check that the digest of the value just entered is equal to the digest stored.
(usually passwd management works this way)

Use other usual encryption schemes if you want to decrypt text.
(RIJNDAEL, RSA, ELGAMAL...)

UPDATE :
I warmly recommend btrott's impressive work (Crypt::OpenPGP)
which handles several schemes
(IDEA, DES3, Blowfish, Rijndael, Rijndael192, Rijndael256, Twofish,DSA, RSA, and ElGamal)

"Only Bad Coders Code Badly In Perl" (OBC2BIP)
  • Comment on Re: big important text encryption with MD5 or something else?