hmac-drbg

Pure Haskell HMAC-DRBG (docs.ppad.tech/hmac-drbg).
git clone git://git.ppad.tech/hmac-drbg.git
Log | Files | Refs | README | LICENSE

commit 0de8830e73a398447af4cc76873fdcac7b82561b
parent bb43396b65b7fadfd5351ae89dd289dd84fb1f09
Author: Jared Tobin <jared@jtobin.io>
Date:   Thu, 17 Oct 2024 16:12:24 +0400

meta: readme link

Diffstat:
MREADME.md | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -104,7 +104,7 @@ Current benchmark figures on my mid-2020 MacBook Air look like (use This library aims at the maximum security achievable in a garbage-collected language under an optimizing compiler such as GHC, in -which strict constant-timeness can be challenging to achieve. +which strict constant-timeness can be [challenging to achieve][const]. The HMAC-DRBG implementation within has been tested against the NIST DRBGVS vectors available for SHA-256 and SHA-512, using the @@ -137,3 +137,4 @@ to get a REPL for the main library. [hadoc]: https://docs.ppad.tech/hmac-drbg [sh256]: https://git.ppad.tech/sha256 [sh512]: https://git.ppad.tech/sha512 +[const]: https://www.chosenplaintext.ca/articles/beginners-guide-constant-time-cryptography.html