hare

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

commit e10a9824d48ffa6ef30bed895614d768a962b9b1
parent 629c67172ed31d8c334e62038d899c3dca37d0a3
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed,  4 May 2022 10:55:38 +0200

crypto::ed25519: add README

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

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

diff --git a/crypto/ed25519/README b/crypto/ed25519/README @@ -0,0 +1,9 @@ +This module implements the ed25519 signature algorithm, as defined by RFC 8032. + +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.