hare

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

commit 0a1ec4fad59143e00112429f242db8700c9f9a24
parent 2c77fdae3004757d3d8bbf348d9d30ce508dd3a2
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 27 Apr 2022 20:09:43 +0200

crypto::bcrypt: add README

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

diff --git a/crypto/bcrypt/README b/crypto/bcrypt/README @@ -0,0 +1,10 @@ +This module implements the bcrypt password hash based on Bruce Schneier's +blowfish. This is a legacy algorithm which is not recommended for new users. + +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.