Increased amount of iterations of key derivation function in accounts.py

This commit is contained in:
StNicolay 2023-01-11 17:50:39 +03:00
parent 972c5577f4
commit 931e93fbde

View File

@ -20,7 +20,7 @@ class Cipher:
algorithm=hashes.SHA256(), algorithm=hashes.SHA256(),
length=32, length=32,
salt=salt, salt=salt,
iterations=100000, iterations=480000,
) )
return cls(kdf.derive(password)) return cls(kdf.derive(password))