From d819f17e441f5c8c4361e2a1885aa31295bd38b4 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Sat, 5 Aug 2023 20:56:39 +0200 Subject: [PATCH] kdf_pbkdf2.py: fix spelling --- contrib/crypt/kdf_pbkdf2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/crypt/kdf_pbkdf2.py b/contrib/crypt/kdf_pbkdf2.py index 16a4edf..74fa9cc 100755 --- a/contrib/crypt/kdf_pbkdf2.py +++ b/contrib/crypt/kdf_pbkdf2.py @@ -54,7 +54,7 @@ salt_hex = "".join(["{:02x}".format(x) for x in salt]) dk_hex = "".join(["{:02x}".format(x) for x in dk]) print("KEY=" + dk_hex); -print("algoritm=pbkdf2_hmac"); +print("algorithm=pbkdf2_hmac"); print("hash_name=" + hash_name); print("salt=" + salt_hex); print("iterations=" + str(iterations));