Copyright | (c) 2008 Eugene Kirpichov |
---|---|
License | BSD-style |
Maintainer | ekirpichov@gmail.com |
Stability | experimental |
Portability | portable (H98 + FFI) |
Safe Haskell | None |
Language | Haskell98 |
Data.Digest.Adler32
Description
Adler32 wrapper
Synopsis
- class Adler32 a
- adler32 :: Adler32 a => a -> Word32
- adler32Update :: Adler32 a => Word32 -> a -> Word32
Documentation
The class of values for which Adler32 may be computed
Minimal complete definition
Instances
Adler32 ByteString Source # | |
Defined in Data.Digest.Adler32 | |
Adler32 ByteString Source # | |
Defined in Data.Digest.Adler32 | |
Adler32 [Word8] Source # | |
Defined in Data.Digest.Adler32 |
adler32Update :: Adler32 a => Word32 -> a -> Word32 Source #
Given the Adler32 checksum of a string, compute Adler32 of its concatenation with another string (t.i., incrementally update the Adler32 hash value).