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^
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.