1
0
mirror of https://github.com/django/django.git synced 2025-04-10 08:19:39 +00:00

[1.8.x] Fixed a typo in BCryptPasswordHasher docstring

There is no BCryptSHA512PasswordHasher.

Backport of 8048411c97559afd4bca28fbeaabafc2df05bcae from master
This commit is contained in:
Matt Robenolt 2016-01-09 02:11:25 -08:00 committed by Tim Graham
parent caeacd94dd
commit 6011d3a156

View File

@ -349,7 +349,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
"""