diff options
| author | Matt Robenolt <matt@ydekproductions.com> | 2016-01-09 02:11:25 -0800 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2016-01-09 12:14:51 -0500 |
| commit | 8048411c97559afd4bca28fbeaabafc2df05bcae (patch) | |
| tree | 0fc2ab471b6a1394896f1627343e3b20437f1d97 | |
| parent | c432dd40bde37667bfe6bb59eaff0a14c50cd27b (diff) | |
Fixed a typo in BCryptPasswordHasher docstring
There is no BCryptSHA512PasswordHasher.
| -rw-r--r-- | django/contrib/auth/hashers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/hashers.py b/django/contrib/auth/hashers.py index 74717c0c5c..046b196181 100644 --- a/django/contrib/auth/hashers.py +++ b/django/contrib/auth/hashers.py @@ -353,7 +353,7 @@ class BCryptPasswordHasher(BCryptSHA256PasswordHasher): This hasher does not first hash the password which means it is subject to the 72 character bcrypt password truncation, most use cases should prefer - the BCryptSha512PasswordHasher. + the BCryptSHA256PasswordHasher. See: https://code.djangoproject.com/ticket/20138 """ |
