sha256

Pure Haskell SHA-256, HMAC-SHA256 (docs.ppad.tech/sha256).
git clone git://git.ppad.tech/sha256.git
Log | Files | Refs | README | LICENSE

commit 916595b21319ca270ce8beb9c742bf7e632cccc9
parent 214244046766764b89600d701d350a568fc5ee92
Author: Jared Tobin <jared@jtobin.io>
Date:   Sun, 11 Jan 2026 12:57:30 +0400

release: v0.3.1

Diffstat:
MCHANGELOG | 4++++
Mppad-sha256.cabal | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,5 +1,9 @@ # Changelog +- 0.3.1 (2026-01-11) + * Adds a basic quickcheck test suite for asserting memory safety of + library functions on random inputs. + - 0.3.0 (2026-01-10) * The HMAC functions now produce a value of type MAC, which is a newtype over a ByteString. The 'Eq' instance for MAC compares values diff --git a/ppad-sha256.cabal b/ppad-sha256.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ppad-sha256 -version: 0.3.0 +version: 0.3.1 synopsis: The SHA-256 and HMAC-SHA256 algorithms license: MIT license-file: LICENSE