digest-pure-0.0.2: Pure hash functions for bytestrings

Stabilityexperimental
MaintainerDanil de Kok <me@danieldk.eu>

Data.Digest.Pure.Adler32

Description

This module provides functions to calculate Adler32 checksums.

Synopsis

Documentation

class Adler32 a whereSource

The class of values for which Adler32 checksums can be computed.

Methods

adler32 :: a -> Word32Source

Compute the Adler32 checksum.

adler32Update :: Word32 -> a -> Word32Source

Incrementally update an Adler32 checksum. The Adler32 checksum of one A updated with B, equals the checksum of the concatenation of A and B.