digest-0.0.1.5: Various hashes for bytestrings; CRC32 and Adler32 for now.
Copyright (c) 2008 Eugene Kirpichov
License BSD-style
Maintainer ekirpichov@gmail.com
Stability experimental
Portability portable (H98 + FFI)
Safe Haskell None
Language Haskell2010

Data.Digest.CRC32

Description

CRC32 wrapper

Synopsis

Documentation

crc32 :: CRC32 a => a -> Word32 Source #

Compute CRC32 checksum

crc32Update :: CRC32 a => Word32 -> a -> Word32 Source #

Given the CRC32 checksum of a string, compute CRC32 of its concatenation with another string (t.i., incrementally update the CRC32 hash value)