-
-
30 Nov 2003 11:00:19 UTC
- Distribution: Digest-Adler32
- Module version: 0.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (1860 / 0 / 0)
- Kwalitee
Bus factor: 0- 72.50% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.06KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Digest::Adler32 - The Adler-32 checksum
SYNOPSIS
use Digest::Adler32; $a32 = Digest::Adler32->new; # add stuff $a32->add($some_data); $a32->addfile(*STDIN); # get digest print "Adler32: ", $a32->hexdigest, "\n";
DESCRIPTION
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
COPYRIGHT
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Copyright 1996 L. Peter Deutsch and Jean-Loup Gailly Copyright 2001,2003 Gisle Aas
Module Install Instructions
To install Digest::Adler32, copy and paste the appropriate command in to your terminal.
cpanm Digest::Adler32
perl -MCPAN -e shell install Digest::Adler32
For more information on module installation, please visit the detailed CPAN module installation guide.