diff options
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/settings.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pysite/settings.py b/pysite/settings.py index a3aecf06..ae5074c5 100644 --- a/pysite/settings.py +++ b/pysite/settings.py @@ -141,6 +141,12 @@ AUTH_PASSWORD_VALIDATORS = [ }, ] +PASSWORD_HASHERS = [ + 'django.contrib.auth.hashers.Argon2PasswordHasher', + 'django.contrib.auth.hashers.PBKDF2PasswordHasher', + 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher' +] + # Internationalization # https://docs.djangoproject.com/en/2.1/topics/i18n/ |