hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 50aab0b2807f23167f8a42d78d04502ba5664294
parent 4f818242f1c055b81d84be9800e3c0f5811662cf
Author: Armin Preiml <apreiml@strohwolke.at>
Date:   Wed, 11 May 2022 10:35:57 +0200

crypto::cipher::poly1305: fix typo in attribution

Signed-off-by: Armin Preiml <apreiml@strohwolke.at>

Diffstat:
Mcrypto/poly1305/poly1305.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/poly1305/poly1305.ha b/crypto/poly1305/poly1305.ha @@ -1,7 +1,7 @@ // License: MPL-2.0 // (c) 2022 Armin Preiml <apreiml@strohwolke.at> -// This implementation was ported from Loup Vaillants monocypher project. +// This implementation was ported from Loup Vaillant's monocypher project. use bytes; use crypto::mac;