Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Data.Digest.CRC32C
Synopsis
- class CRC32C a
- crc32c :: CRC32C a => a -> Word32
- crc32cUpdate :: CRC32C a => Word32 -> a -> Word32
Documentation
Minimal complete definition
Instances
CRC32C ByteString Source # | |
Defined in Data.Digest.CRC32C | |
CRC32C ByteString Source # | |
Defined in Data.Digest.CRC32C | |
CRC32C ShortByteString Source # | |
Defined in Data.Digest.CRC32C | |
CRC32C [Word8] Source # | |
Defined in Data.Digest.CRC32C |
crc32cUpdate :: CRC32C a => Word32 -> a -> Word32 Source #
Given the CRC32C checksum of a string, compute CRC32C of its concatenation with another string (t.i., incrementally update the CRC32C hash value)