adler32

An implementation of Adler-32, supporting rolling checksum operation

https://github.com/redneb/hs-adler32

LTS Haskell 22.13:0.1.2.0
Stackage Nightly 2024-03-14:0.1.2.0
Latest on Hackage:0.1.2.0

See all snapshots adler32 appears in

BSD-3-Clause licensed and maintained by Marios Titas <rednebΑΤgmxDΟΤcom>
This version can be pinned in stack with:adler32-0.1.2.0@sha256:1a6a55affe1ce5cf61c7d71fa074042d9a5703df1d3322993535e73b908b99fc,2113

Module documentation for 0.1.2.0

Depends on 2 packages(full list with versions):

This package provides an implementation of the Adler-32 checksum algorithm. It supports a rolling checksum mode, i.e. the checksum of a sliding window of the input message can be computed efficiently. It also supports compounding, i.e. the checksum of the concatenation of two messages can be efficiently computed from the checksums of the two parts.

By default, the highly optimized implementation of Adler-32 from zlib will be used. This can be disabled, in which case a pure haskell implementation will be used instead. On my system, the haskell version is 2 to 3 times slower.

Changes

0.1.2.0 2018-03-15

  • Fix compatibility with base-4.11/GHC 8.4

0.1.1.0 2016-01-25

  • Introduce the adler32Update' method to the Adler32Src class.