kdf_pbkdf2.py: fix spelling

pull/571/head
Axel Burri 2023-08-05 20:56:39 +02:00
parent 1807ad5cee
commit d819f17e44
1 changed files with 1 additions and 1 deletions

View File

@ -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));