Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
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??

Help for this page

Select Code to Download


  1. or download this
    use Digest::MD5 qw(md5_hex);
    
    ...
    print "2: bar => ", md5_hex("bar"), "\n";
    print "3: 123 => ", md5_hex(123), "\n";
    print "4: empty => ", md5_hex(""), "\n";
    
  2. or download this
    1: foo => acbd18db4cc2f85cedef654fccc4a4d8
    2: bar => 37b51d194a7513e45b56f6524f2d51f2
    3: 123 => 202cb962ac59075b964b07152d234b70
    4: empty => d41d8cd98f00b204e9800998ecf8427e
    
  3. or download this
    <?
    echo "1: foo => ", md5("foo"), "\n";
    ...
    echo "3: 123 => ", md5(123), "\n";
    echo "4: empty => ", md5(""), "\n";
    ?>
    
  4. or download this
    1: foo => acbd18db4cc2f85cedef654fccc4a4d8
    2: bar => 37b51d194a7513e45b56f6524f2d51f2
    3: 123 => 202cb962ac59075b964b07152d234b70
    4: empty => d41d8cd98f00b204e9800998ecf8427e
    

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 making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-19 23:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found