sha512

Pure Haskell SHA-512, HMAC-SHA512 (docs.ppad.tech/sha512).
git clone git://git.ppad.tech/sha512.git
Log | Files | Refs | README | LICENSE

commit 35c5b08bb702ca87df2caa9238c79283cc6c5eff
parent bb1be7bf477791e735cea018857811b14c5db607
Author: Jared Tobin <jared@jtobin.io>
Date:   Mon,  6 Jul 2026 09:37:42 -0230

release: v0.2.3

Diffstat:
MCHANGELOG | 4+++-
Mppad-sha512.cabal | 2+-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,10 +1,12 @@ # Changelog -- Unreleased +- 0.2.3 (2026-07-06) * The constant-time 'Eq' on 'MAC' now folds over the two buffers directly, rather than materialising an intermediate ByteString holding their XOR on the heap. Semantics are unchanged. + * Improves the performance of constant-time MAC comparison. + - 0.2.2 (2026-02-01) * The library has been refactored substantially to achieve greater control over heap allocation, particularly around HMAC calculation. diff --git a/ppad-sha512.cabal b/ppad-sha512.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ppad-sha512 -version: 0.2.2 +version: 0.2.3 synopsis: The SHA-512 and HMAC-SHA512 algorithms license: MIT license-file: LICENSE