Re: [PHP] Decryption

2002-01-13 Thread Steve Maroney
On Sun, 13 Jan 2002, John Cuthbert wrote: > Is there a method for decrypting encrypted things by md5? > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators

Re: [PHP] Decryption

2002-01-13 Thread Joe Conway
John Cuthbert wrote: > > Is there a method for decrypting encrypted things by md5? No. MD5 is a one-way hash, *not* a form of encryption. A hash is specifically designed so that it is impractical to find the input string, given the output string. If you need to encrypt/decrypt, look at the m