Author | Post | ||
sniperkid |
anyone know the code or how to work out crc32 in perl?? im reading a file where the whole contents are stored in @contents, just need to work out crc32 of each number. ~sniper-kid~ |
||
11.04.2004 11:43:34 |
|
||
wzZx |
use String::CRC32; $string="sniperkid"; $cheksum=print "The cheksum is ", crc32("$string"), "n"; |
||
11.04.2004 12:04:16 |
|
||
wzZx |
# perl crc32.pl The cheksum is 3586956420 # I think I don't miss anything. Luck. |
||
11.04.2004 12:06:07 |
|