hare

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

commit f39df5e8f656dd27dd7799b0cf7260b71087725d
parent d70e53ea922916ed795e817fd97b7fcac938fac6
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed,  4 May 2022 10:41:52 +0200

crypto::blake2b: add README

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Acrypto/blake2b/README | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/crypto/blake2b/README b/crypto/blake2b/README @@ -0,0 +1,11 @@ +This module implements the blake2b password hashing algorithm, bug-for-bug +compatible with the classic OpenBSD implementation. It is not recommended except +in cases of backwards-compatibility with legacy systems. + +This is a low-level module which implements cryptographic primitives. Direct use +of cryptographic primitives is not recommended for non-experts, as incorrect use +of these primitives can easily lead to the introduction of security +vulnerabilities. Non-experts are advised to use the high-level operations +available in the top-level [[crypto]] module. + +Be advised that Hare's cryptography implementations have not been audited.