We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b032ca commit 6e69c6eCopy full SHA for 6e69c6e
arklet/settings.py
@@ -136,6 +136,13 @@
136
},
137
]
138
139
+PASSWORD_HASHERS = [
140
+ "django.contrib.auth.hashers.Argon2PasswordHasher",
141
+ "django.contrib.auth.hashers.PBKDF2PasswordHasher",
142
+ "django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher",
143
+ "django.contrib.auth.hashers.BCryptSHA256PasswordHasher",
144
+ "django.contrib.auth.hashers.ScryptPasswordHasher",
145
+]
146
147
# Internationalization
148
# https://docs.djangoproject.com/en/3.2/topics/i18n/
requirements.txt
@@ -21,3 +21,5 @@ tomli==1.2.2
21
typing-extensions==3.10.0.2
22
urllib3==1.26.7
23
django-environ==0.8.0
24
+argon2-cffi==21.3.0
25
+argon2-cffi-bindings==21.2.0
0 commit comments