hare

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

commit 4340c27a87e0ccf376150cf98cdbf18a3873953e
parent c04278f9b7e7ef9f6a050360c2588547f114c029
Author: Armin Preiml <apreiml@strohwolke.at>
Date:   Thu,  9 May 2024 13:30:59 +0200

add crypto::ecdsa

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

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

diff --git a/crypto/ecdsa/README b/crypto/ecdsa/README @@ -0,0 +1,10 @@ +This module implements the elliptic curve digital signature algorithm for +a selection of curves supported by [[crypto::ec]]. + +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.