index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
auth
/
hashers.py
Age
Commit message (
Expand
)
Author
2014-03-03
Fixed many typos in comments and docstrings.
Rodolfo Carvalho
2014-02-08
Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...
Berker Peksag
2013-11-30
Fixed #21535 -- Fixed password hash iteration upgrade.
Tim Graham
2013-11-09
Fixed #21398 -- Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3.
Tim Graham
2013-10-21
Force update of the password on iteration count changes.
Florian Apolloner
2013-10-10
Whitespace cleanup.
Tim Graham
2013-09-24
Revert "Ensure that passwords are never long enough for a DoS."
Florian Apolloner
2013-09-19
Increase default PBKDF2 iterations
Paul McMillan
2013-09-15
Ensure that passwords are never long enough for a DoS.
Russell Keith-Magee
2013-09-10
Fixed #20841 -- Added messages to NotImplementedErrors
Gregor MacGregor
2013-08-29
Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()
Tim Graham
2013-08-04
Fixed a number of lint warnings, particularly around unused variables.
Alex Gaynor
2013-08-04
Deprecated SortedDict (replaced with collections.OrderedDict)
Curtis Maloney
2013-07-29
Deprecated django.utils.importlib
Claude Paroz
2013-07-03
Fixed #20675 -- `check_password` should work when no password is specified.
Simon Charette
2013-06-18
Fixed #20079 -- Improve security of password reset tokens
Erik Romijn
2013-06-18
Fixed #20593 -- Allow blank passwords in check_password() and set_password()
Erik Romijn
2013-06-15
Fixed #20599 -- Changed wording of ValueError raised by _load_library
Jaap Roes
2013-05-13
Recommend using the bcrypt library instead of py-bcrypt
Donald Stufft
2013-05-11
Properly force bytes or str for bcrypt on Python3
Donald Stufft
2013-03-26
Fixed #20138 -- Added BCryptSHA256PasswordHasher
Donald Stufft
2013-02-25
Fixed #18144 -- Restored compatibility with SHA1 hashes with empty salt.
Aymeric Augustin
2013-02-04
Fixed #17061 -- Factored out importing object from a dotted path
Claude Paroz
2013-02-02
Added missing parentheses in if clause
Claude Paroz
2013-02-02
Fixed #18144 -- Added backwards compatibility with old unsalted MD5 passwords
Claude Paroz
2012-12-22
Fixed #19509 -- Fixed crypt/bcrypt non-ascii password encoding
Claude Paroz
2012-09-12
Fixed #18182 -- Made is_usable_password check if hashing algorithm is correct
Claude Paroz
2012-08-29
Replaced many smart_bytes by force_bytes
Claude Paroz
2012-08-11
[py3] Decoded base64-encoded hash in contrib.auth.hashers
Andrews Medina
2012-08-09
[py3k] use the base64 module, instead of bytes.encode('base64')
Alex Gaynor
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-06-06
Fixed #18184 -- Moved algorithm identification code to hashers module
Claude Paroz
2012-06-06
Delayed encoding of password and salt in password checking.
Claude Paroz
2012-04-30
Reset password hashers cache on settings_changed.
Anssi Kääriäinen
2012-02-29
Fixes #17777 and makes tests run again.
Paul McMillan
2011-12-24
Fixed #17457 -- Marked strings used in hash descriptions for translation.
Aymeric Augustin
2011-12-23
Renovated password hashing, including the forgotten files in r17253.
Paul McMillan