Re: MD5digest hash in hex

2004-07-13 Thread kee nethery
thank you! Kee On Jul 13, 2004, at 7:35 AM, Alex Tweedly wrote: At 07:12 13/07/2004 -0700, kee nethery wrote: I'm trying to duplicate an MD5 hash that gets created by this Perl code: Perl output samples for various values of $the_string: "just a test" => 25c674ceb1d7e145c01011d697c6e52f When I ru

Re: MD5digest hash in hex

2004-07-13 Thread Dar Scott
On Jul 13, 2004, at 8:12 AM, kee nethery wrote: Any ideas what I am doing wrong? Use capital H instead of lowercase h for the nibble order you want. Dar Scott ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-r

Re: MD5digest hash in hex

2004-07-13 Thread Alex Tweedly
At 07:12 13/07/2004 -0700, kee nethery wrote: I'm trying to duplicate an MD5 hash that gets created by this Perl code: Perl output samples for various values of $the_string: "just a test" => 25c674ceb1d7e145c01011d697c6e52f When I run this with these strings I get the following values of theHexMd5H

MD5digest hash in hex

2004-07-13 Thread kee nethery
I'm trying to duplicate an MD5 hash that gets created by this Perl code: Here's the code that I use: #!/usr/bin/perl use Digest::MD5; $hash = Digest::MD5::md5_hex($the_string); print "$hash\n"; -- Perl output samples for various values of $the_string: "just a test"