|
NAMEDigest::CRC32 - Cyclic Redundency Check digests implementation VERSION0.01 SYNOPSIS use Digest::CRC32;
my $crc = new Digest::CRC32();
# Digest for a string
printf $crc->strcrc32("Hello world");
#Digest for a file
print $crc->filecrc32($myfile);
DESCRIPTIONThis module provides a perl implementation to generate 32 bits CRC digests for buffers and files. COPYRIGHTCopyright 2004 by Faycal Chraibi. All rights reserved. This library is a free software. You can redistribute it and/or modify it under the same terms as Perl itself. AUTHORFaycal Chraibi <fays@cpan.org> SEE ALSODigest::CRC
|