hare

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

commit 46a08d04eff269a05ad1b19718952ed542a0e91f
parent bdcabe65573c3fd5f63c01a963afb899dea2754d
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 22 Dec 2021 13:16:25 +0100

crypto::argon2: minor docs improvements

Missed a couple of spots

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

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

diff --git a/crypto/argon2/argon2.ha b/crypto/argon2/argon2.ha @@ -9,7 +9,7 @@ use io; use rt; use types; -// Current implemented version of argon2 +// Latest version of argon2 supported by this implementation (1.3). export def VERSION: u8 = 0x13; // Number of u64 elements of one block. @@ -38,7 +38,7 @@ type mode = enum { // still compute the correct hash if this value is greater than one. // // 'version' specifies the version of the argon2 function. The implementation -// currently only supports version 1.3. Use [[argon2::VERSION]] here. +// currently only supports version 1.3. Use [[VERSION]] here. // // 'secret' and 'data' are optional byte arrays that are applied to the initial // state. Consult the RFC for details.