hare

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

commit 1048620a7a25134db370bf24736efff1ffcb2483
parent 6ea6f1db71de2998222698b854e185d785e166cc
Author: Ember Sawady <ecs@d2evs.net>
Date:   Sun, 22 Oct 2023 22:50:19 +0000

crypto::argon2: fix references

Signed-off-by: Ember Sawady <ecs@d2evs.net>

Diffstat:
Mcrypto/argon2/README | 4++--
Mcrypto/argon2/argon2.ha | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crypto/argon2/README b/crypto/argon2/README @@ -4,10 +4,10 @@ Hare programs, and for deriving keys for use with other cryptographic algorithms. Some thought must be given to the appropriate configuration for your use case. Some general advice is provided here; if in doubt, consult the RFC. -The argon2 parameters are configured via the [[config]] structure. To determine +The argon2 parameters are configured via the [[conf]] structure. To determine the appropriate configuration parameters for a particular use-case, consult section 4 of the RFC. Otherwise, sane defaults for common scenarios are provided -via [[default_config]] and [[low_mem_config]]; consult the docs of each +via [[default_conf]] and [[low_mem_conf]]; consult the docs of each configuration for details. Once a suitable configuration has been selected, the user must provide a salt. diff --git a/crypto/argon2/argon2.ha b/crypto/argon2/argon2.ha @@ -33,7 +33,7 @@ type mode = enum { }; // This type provides configuration options for the argon2 algorithm. Most users -// will find [[default_config]] or [[low_mem_config]] suitable for their needs +// will find [[default_conf]] or [[low_mem_conf]] suitable for their needs // without providing a custom configuration. If writing a custom configuration, // consult the RFC for advice on selecting suitable values for your use-case. //