From 931e93fbde18e2b08468a55f2d0d2d50d6deaa72 Mon Sep 17 00:00:00 2001 From: StNicolay Date: Wed, 11 Jan 2023 17:50:39 +0300 Subject: [PATCH] Increased amount of iterations of key derivation function in accounts.py --- src/encryption/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encryption/accounts.py b/src/encryption/accounts.py index a23b277..be7b7d1 100644 --- a/src/encryption/accounts.py +++ b/src/encryption/accounts.py @@ -20,7 +20,7 @@ class Cipher: algorithm=hashes.SHA256(), length=32, salt=salt, - iterations=100000, + iterations=480000, ) return cls(kdf.derive(password))