summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorMatt Robenolt <matt@ydekproductions.com>2016-01-09 02:11:25 -0800
committerTim Graham <timograham@gmail.com>2016-01-09 13:34:54 -0500
commitc7a73f3929cb0c5bdf7c10882ff006bab026817e (patch)
tree652b49ae6b333dc58e73e21d871087cb51e7214f /django
parent577ea02977c90f37d3e4bc617f66fa97da7a10b7 (diff)
[1.9.x] Fixed a typo in BCryptPasswordHasher docstring
There is no BCryptSHA512PasswordHasher. Backport of 8048411c97559afd4bca28fbeaabafc2df05bcae from master
Diffstat (limited to 'django')
-rw-r--r--django/contrib/auth/hashers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/hashers.py b/django/contrib/auth/hashers.py
index 0188f4a4e7..93d4598cce 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
"""