digest-0.0.0.7: Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now.Source codeContentsIndex
Data.Digest.Adler32
Portabilityportable (H98 + FFI)
Stabilityexperimental
Maintainerekirpichov@gmail.com
Description
Adler32 wrapper
Synopsis
class Adler32 a where
adler32 :: a -> Word32
adler32Update :: Word32 -> a -> Word32
Documentation
class Adler32 a whereSource
The class of values for which Adler32 may be computed
Methods
adler32 :: a -> Word32Source
Compute Adler32 checksum
adler32Update :: Word32 -> a -> Word32Source
Given the Adler32 checksum of a string, compute Adler32 of its concatenation with another string (t.i., incrementally update the Adler32 hash value).
Produced by Haddock version 2.6.0