The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Digest::XSAdler32 - Implementation of the Adler32 checksum algorithm using XS

SYNOPSIS

  use Digest::XSAdler32;
  Digest::XSAdler32::updateAdler32(*FP, $offset, $size);

DESCRIPTION

Digest::XSAdler32 is an implementation of the Adler32 checksum algorithm. Unlike Digest::Adler (http://search.cpan.org/~gaas/Digest-Adler32-0.03/lib/Digest/Adler32.pm) the algorithm is implemented in C and linked using XS rather than in native Perl. This makes it significantly faster.

Unless you *really* need the additional speed, I would urge you to use Digest::Adler32 instead of this module.

SEE ALSO

Digest::Adler32

AUTHOR

Aditya, <aditya@wasudeo.com>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.