aead

Pure Haskell AEAD-ChaCha20-Poly1305 (docs.ppad.tech/aead).
git clone git://git.ppad.tech/aead.git
Log | Files | Refs | README | LICENSE

commit 7dd81c37159d531bfc83125993fff04864fe66f5
parent fcebb2eb3c680d62d2bb3f9165f039cf1b1667fb
Author: Jared Tobin <jared@jtobin.io>
Date:   Tue, 11 Mar 2025 09:44:45 +0400

release: v0.1.0

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

diff --git a/CHANGELOG b/CHANGELOG @@ -0,0 +1,6 @@ +# Changelog + +- 0.1.0 (2025-03-09) + * Initial release, supporting the ChaCha20-Poly1305 configuration. + + diff --git a/ppad-aead.cabal b/ppad-aead.cabal @@ -29,8 +29,8 @@ library build-depends: base >= 4.9 && < 5 , bytestring >= 0.9 && < 0.13 - , ppad-chacha - , ppad-poly1305 + , ppad-chacha >= 0.1 && < 0.2 + , ppad-poly1305 >= 0.2 && < 0.3 test-suite aead-tests type: exitcode-stdio-1.0