settings: use stronger hash algorithm bcrypt

v1-0-stable
Christian Merten 3 years ago
parent 9c77e6db9f
commit 55d4033c5b
Signed by: christian.merten
GPG Key ID: D953D69721B948B3

@ -245,3 +245,13 @@ JET_CHANGE_FORM_SIBLING_LINKS = False
GRACE_PERIOD_WAITING_CONFIRMATION = 30 GRACE_PERIOD_WAITING_CONFIRMATION = 30
WAITING_CONFIRMATION_FREQUENCY = 90 WAITING_CONFIRMATION_FREQUENCY = 90
# password hash algorithms used
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.BCryptPasswordHasher',
'django.contrib.auth.hashers.PBKDF2PasswordHasher',
'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
'django.contrib.auth.hashers.Argon2PasswordHasher',
'django.contrib.auth.hashers.ScryptPasswordHasher',
]

@ -1,6 +1,7 @@
amqp==5.0.9 amqp==5.0.9
asgiref==3.4.1 asgiref==3.4.1
auditlog3==1.0.1 auditlog3==1.0.1
bcrypt==4.0.1
billiard==3.6.4.0 billiard==3.6.4.0
celery==5.2.3 celery==5.2.3
certifi==2021.10.8 certifi==2021.10.8
@ -9,10 +10,14 @@ click==8.0.3
click-didyoumean==0.3.0 click-didyoumean==0.3.0
click-plugins==1.1.1 click-plugins==1.1.1
click-repl==0.2.0 click-repl==0.2.0
cron-descriptor==1.2.35
Deprecated==1.2.13 Deprecated==1.2.13
Django==4.0.1 Django==4.0.1
django-appconf==1.0.5 django-appconf==1.0.5
django-celery-beat==2.5.0
django-celery-email==3.0.0 django-celery-email==3.0.0
django-nested-admin==4.0.2
django-timezone-field==5.0
idna==3.3 idna==3.3
kombu==5.2.3 kombu==5.2.3
mysqlclient==2.1.0 mysqlclient==2.1.0
@ -20,11 +25,15 @@ packaging==21.3
Pillow==9.0.0 Pillow==9.0.0
prompt-toolkit==3.0.24 prompt-toolkit==3.0.24
pyparsing==3.0.6 pyparsing==3.0.6
python-crontab==2.7.1
python-dateutil==2.8.2
python-monkey-business==1.0.0
pytz==2021.3 pytz==2021.3
redis==4.1.0 redis==4.1.0
requests==2.27.1 requests==2.27.1
six==1.16.0 six==1.16.0
sqlparse==0.4.2 sqlparse==0.4.2
tzdata==2022.7
urllib3==1.26.8 urllib3==1.26.8
vine==5.0.0 vine==5.0.0
wcwidth==0.2.5 wcwidth==0.2.5

Loading…
Cancel
Save