1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Support PBKDF2 passwords in dev.

This commit is contained in:
Luke Sneeringer 2015-05-14 11:15:23 -05:00
parent 04cb3c9065
commit 7d65b439fa

View File

@ -57,6 +57,7 @@ if 'django_jenkins' in INSTALLED_APPS:
# https://docs.djangoproject.com/en/1.6/topics/auth/passwords/#how-django-stores-passwords
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
'django.contrib.auth.hashers.PBKDF2PasswordHasher',
)
# Configure a default UUID for development only.