Digest::Adler32 - The Adler-32 checksum


Digest-Adler32 documentation  | view source Contained in the Digest-Adler32 distribution.

Index


NAME

Top

Digest::Adler32 - The Adler-32 checksum

SYNOPSIS

Top

 use Digest::Adler32;
 $a32 = Digest::Adler32->new;

 # add stuff
 $a32->add($some_data);
 $a32->addfile(*STDIN);

 # get digest
 print "Adler32: ", $a32->hexdigest, "\n";




DESCRIPTION

Top

The Digest::Adler32 module implements the Adler-32 checksum as specified in RFC 1950. The interface provided by this module is specified in Digest, but no functional interface is provided.

A binary digest will be 4 bytes long. A hex digest will be 8 characters long. A base64 digest will be 6 characters long.

SEE ALSO

Top

Digest, Digest::MD5

COPYRIGHT

Top


Digest-Adler32 documentation  | view source Contained in the Digest-Adler32 distribution.