Added password hasher settings. Fixed #2354.

This commit is contained in:
Norman Jäckel 2016-09-08 00:02:18 +02:00
parent f2c3e535a5
commit f2c17f1787
1 changed files with 9 additions and 0 deletions

View File

@ -100,6 +100,15 @@ ALLOWED_HOSTS = ['*']
# Adds all automaticly collected plugins
INSTALLED_PLUGINS = collect_plugins()
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.PBKDF2PasswordHasher',
'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
'django.contrib.auth.hashers.Argon2PasswordHasher',
'django.contrib.auth.hashers.BCryptSHA256PasswordHasher',
'django.contrib.auth.hashers.BCryptPasswordHasher',
'django.contrib.auth.hashers.MD5PasswordHasher', # MD5 is only used for inital passwords.
]
TEST_RUNNER = 'openslides.utils.test.OpenSlidesDiscoverRunner'
# Config for the REST Framework