index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
utils
/
crypto.py
Age
Commit message (
Expand
)
Author
2016-11-14
Fixed #27463 -- Fixed E741 flake8 warnings.
Ramin Farajpour Cami
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-12-13
Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range
Michael Hall
2014-07-11
Bump the default iterations for PBKDF2.
Alex Gaynor
2014-05-31
Note that the stdlib's version of pbkdf2_hmac will also be used in the upcomi...
Alex Gaynor
2014-05-28
Fixed constant_time_compare on Python 2.7.7
Florian Apolloner
2014-04-22
Use the stdlib's compare_digest for constant time comparisons when available
Alex Gaynor
2014-04-17
Typo fix
Alex Gaynor
2014-04-17
Use the stdlib's PBKDF2 implementation when available.
Alex Gaynor
2014-02-16
Fixed #19980: Signer broken for binary keys (with non-ASCII chars).
MattBlack85
2013-11-05
Flake8 fixes
Alex Gaynor
2013-11-04
Simplify (and very very slightly speed up) the pbkdf2 implementation
Alex Gaynor
2013-10-21
Fixed #21253 -- PBKDF2 with cached HMAC key
Florian Apolloner
2013-10-18
Fixed #21287 -- Fixed E123 pep8 warnings
Alasdair Nicol
2013-09-24
Fixed #21138 -- Increased the performance of our PBKDF2 implementation.
Florian Apolloner
2013-09-19
Increase default PBKDF2 iterations
Paul McMillan
2013-08-30
Fixed #20989 -- Removed useless explicit list comprehensions.
Simon Charette
2013-06-02
Switched to using some constants the hmac module exposes.
Alex Gaynor
2013-03-18
Clarified that constant_time_compare doesn't protect string lengths.
Aymeric Augustin
2013-02-27
[py3] Always fed hashlib with bytes.
Ćukasz Langa
2012-08-29
Replaced many smart_bytes by force_bytes
Claude Paroz
2012-08-21
Reverted type check added in 62954ba04c.
Aymeric Augustin
2012-08-20
[py3] Fixed #17040 -- ported django.utils.crypto.constant_time_compare.
Aymeric Augustin
2012-08-07
[py3] Ported django.utils.crypto.
Aymeric Augustin
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-07-22
Used a Python 3-compatible syntax for building a translation table
Claude Paroz
2012-07-22
[py3] Added Python 3 compatibility for xrange.
Aymeric Augustin
2012-07-22
[py3] Removed longs.
Aymeric Augustin
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-06-06
Delayed encoding of password and salt in password checking.
Claude Paroz
2012-05-20
Imported reduce from functools for forward compatibility.
Claude Paroz
2012-05-19
Marked bytestrings with b prefix. Refs #18269
Claude Paroz
2012-02-23
Improved get_random_string().
Paul McMillan
2012-02-23
Cleanup to use get_random_string consistently.
Paul McMillan
2012-02-11
Fixes #16827. Adds a length check to CSRF tokens before applying the santizin...
Paul McMillan
2012-02-02
Fixed #17481. pbkdf2 hashes no longer ommit leading zeros.
Paul McMillan
2011-12-23
Renovated password hashing. Many thanks to Justine Tunney for help with the i...
Paul McMillan
2011-03-28
Removed a bunch more Python 2.4 workarounds now that we don't support that ve...
Adrian Holovaty
2010-10-15
Fixed Python 2.4 incompatibility introduced in [14218]
Luke Plant
2010-10-14
Fixed #14445 - Use HMAC and constant-time comparison functions where needed.
Luke Plant