python: Increase the argon2 hash length: 64 -> 128 bytes

Warning: This affects password generation, but is hopefully the last
change to do so.
This commit is contained in:
2021-11-14 09:08:43 +01:00
parent 96b83673ee
commit 8f0a1a5c4b

View File

@ -26,7 +26,7 @@ PASSGENY_ARGON2_TIME_COST = 6
# Number of parallel threads
PASSGENY_ARGON2_PARALLEL = 4
# Hash length - 512 bits by default
PASSGENY_ARGON2_HASH_LEN = 64
PASSGENY_ARGON2_HASH_LEN = 128
class PassgenyInvalidPattern(Exception):
pass