From 59d92f268b2a002b006250258bdc54880e080013 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 7 Apr 2023 15:08:05 +0200 Subject: Force using 128 bites salt for password hasher --- example_project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example_project/settings.py') 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', -- cgit v1.2.3