
Digest::CRC32 - Cyclic Redundency Check digests implementation

0.01

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);

This module provides a perl implementation to generate 32 bits CRC digests for buffers and files.

Copyright 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.

Faycal Chraibi <fays@cpan.org>
