Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: MD5 compatibility in PHP

by gav^ (Curate)
on Feb 11, 2002 at 01:16 UTC ( [id://144549]=note: print w/replies, xml ) Need Help??


in reply to MD5 compatibility in PHP

A quick test:

Perl

use Digest::MD5 qw(md5_hex); print "1: foo => ", md5_hex("foo"), "\n"; print "2: bar => ", md5_hex("bar"), "\n"; print "3: 123 => ", md5_hex(123), "\n"; print "4: empty => ", md5_hex(""), "\n";

Output

1: foo => acbd18db4cc2f85cedef654fccc4a4d8 2: bar => 37b51d194a7513e45b56f6524f2d51f2 3: 123 => 202cb962ac59075b964b07152d234b70 4: empty => d41d8cd98f00b204e9800998ecf8427e

PHP

<? echo "1: foo => ", md5("foo"), "\n"; echo "2: bar => ", md5("bar"), "\n"; echo "3: 123 => ", md5(123), "\n"; echo "4: empty => ", md5(""), "\n"; ?>

Output

1: foo => acbd18db4cc2f85cedef654fccc4a4d8 2: bar => 37b51d194a7513e45b56f6524f2d51f2 3: 123 => 202cb962ac59075b964b07152d234b70 4: empty => d41d8cd98f00b204e9800998ecf8427e

gav^

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://144549]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-23 16:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found