diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-07 15:08:05 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-17 15:47:16 +0200 |
commit | 59d92f268b2a002b006250258bdc54880e080013 (patch) | |
tree | 90808846943f5ab92c2ae767336436a0bd29c560 /example_project/settings.py | |
parent | eddc473c05d4913dfcb8b7e747a94b22968f6ea3 (diff) | |
download | Ishtar-59d92f268b2a002b006250258bdc54880e080013.tar.bz2 Ishtar-59d92f268b2a002b006250258bdc54880e080013.zip |
Force using 128 bites salt for password hasher
Diffstat (limited to 'example_project/settings.py')
-rw-r--r-- | example_project/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index a0f677755..5f110acad 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -64,7 +64,7 @@ LOGOUT_REDIRECT_URL = "/" + URL_PATH ACCOUNT_ACTIVATION_DAYS = 7 PASSWORD_HASHERS = [ - 'django.contrib.auth.hashers.Argon2PasswordHasher', + 'ishtar_common.utils.Argon2PasswordHasher', 'django.contrib.auth.hashers.PBKDF2PasswordHasher', 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher', 'django.contrib.auth.hashers.BCryptSHA256PasswordHasher', |