hare

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

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

crypto::derivekey: use argon2id by default

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

Diffstat:
Mcrypto/keyderiv.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/keyderiv.ha b/crypto/keyderiv.ha @@ -48,5 +48,5 @@ export fn derivekey( version = argon2::VERSION, ... }; - return argon2::argon2i(dest, password, salt, &config); + return argon2::argon2id(dest, password, salt, &config); };