The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Digest::CRC32 - Cyclic Redundency Check digests implementation

VERSION

0.01

SYNOPSIS

my $crc = new Digest::CRC32();
# Digest for a string
printf $crc->strcrc32("Hello world");
#Digest for a file
print $crc->filecrc32($myfile);

DESCRIPTION

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

COPYRIGHT

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.

AUTHOR

Faycal Chraibi <fays@cpan.org>

SEE ALSO

Digest::CRC