hare

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

commit f871dd3d7c6a683ebcbea05c15c86c294ae2940d
parent 1b46fe71a4f63865f163f5006ea9325990f9cce5
Author: Armin Preiml <apreiml@strohwolke.at>
Date:   Tue, 28 May 2024 11:45:57 +0200

ecdsa: fix docs

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

Diffstat:
Mcrypto/ecdsa/key.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/ecdsa/key.ha b/crypto/ecdsa/key.ha @@ -134,8 +134,8 @@ export fn p521pub() p521pubkey = p521pubkey { ... }; -// Initializes the pubkey 'pub' from the coordinates 'r' and 's' of the public -// point 'q'. +// Initializes the pubkey 'pub' from the coordinates 'x' and 'y' of a public +// point. // // Does not validate if the point is on curve. [[verify]] will fail, if such is // the case.