From 64cdc4cf1e61cbb6c8dfca95135d83496f0d25ab Mon Sep 17 00:00:00 2001 From: Alexey Avramov Date: Sun, 17 Dec 2023 19:58:29 +0900 Subject: [PATCH] Update argon2id.py Fix typo in docs: kdf() function provides argon2id construction, not srgon2i. --- src/nacl/pwhash/argon2id.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nacl/pwhash/argon2id.py b/src/nacl/pwhash/argon2id.py index 1b86d69e..f3aa3f7f 100644 --- a/src/nacl/pwhash/argon2id.py +++ b/src/nacl/pwhash/argon2id.py @@ -60,7 +60,7 @@ def kdf( ) -> bytes: """ Derive a ``size`` bytes long key from a caller-supplied - ``password`` and ``salt`` pair using the argon2i + ``password`` and ``salt`` pair using the argon2id memory-hard construct. the enclosing module provides the constants