Commit 6011d3a1 authored by Matt Robenolt's avatar Matt Robenolt Committed by Tim Graham
Browse files

[1.8.x] Fixed a typo in BCryptPasswordHasher docstring

There is no BCryptSHA512PasswordHasher.

Backport of 8048411c from master
parent caeacd94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
    """