summaryrefslogtreecommitdiff
path: root/django/core/signing.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #32191 -- Added Signer.sign_object()/unsign_object().Florian Apolloner2021-01-061-26/+40
* Fixed #31842 -- Added DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak2020-08-041-2/+4
* Refs #27468 -- Changed default Signer algorithm to SHA-256.Claude Paroz2020-04-151-7/+20
* Refs #23919 -- Removed obsolete comment in signing.pyClaude Paroz2020-01-081-1/+0
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-2/+2
* Fixed signing.dumps() example for Python 3.minusf2018-11-091-1/+1
* Refs #27795 -- Replaced force_bytes() usage in django.core.signing.Asif Saifuddin Auvi2018-02-071-2/+2
* Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов2018-01-121-3/+2
* Clarified HMAC usage in signing.dumps() docstring.Blake Griffith2017-02-281-1/+1
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-11/+7
* Refs #27795 -- Removed force_text from the template layerClaude Paroz2017-02-071-7/+7
* Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis2017-01-261-2/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
* Removed u'' prefx in django/core/signing.py comment.Srinivas Reddy Thatiparthy2017-01-201-1/+1
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-11/+6
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+1
* Refs #22804 -- Made an unsafe value of 'sep' in Signer an exception.Tim Graham2015-09-231-4/+4
* Fixed #22804 -- Added warning for unsafe value of 'sep' in SignerDavid Wolever2015-07-071-1/+9
* Fixed #21363 -- Added datetime.timedelta support to TimestampSigner.unsign().Berker Peksag2014-11-151-0/+3
* Corrected many style guide violations that the newest version of flake8 catchesAlex Gaynor2014-03-301-1/+1
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Fixed #19980: Signer broken for binary keys (with non-ASCII chars).MattBlack852014-02-161-4/+5
* Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag2014-02-081-2/+2
* Fixed assorted flake8 errors.Tim Graham2013-10-111-1/+1
* Fixed #20687 -- Added documentation for django.core.signing API.Tomáš Ehrlich2013-07-031-0/+4
* Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz2013-02-041-14/+2
* Required serializer to use bytes in loads/dumpsAymeric Augustin2012-10-281-6/+10
* Fixed #18852 -- Restored backwards compatibilityAymeric Augustin2012-08-251-19/+29
* [py3] Made signing infrastructure pass tests with Python 3Claude Paroz2012-08-101-10/+9
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-6/+6
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-2/+2
* Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin2012-04-291-4/+5
* Fixed #16354 -- Fixed typo in signing docstring. Thanks, charettes.Jannis Leidel2011-06-271-1/+1
* Fixed #16199 -- Added a Cookie based session backend. Many thanks to Eric Flo...Jannis Leidel2011-06-261-21/+34
* Fixed #16285 -- Removed a misleading comment from the signing code, thanks Pa...Jannis Leidel2011-06-261-2/+4
* Backed out [16356] due to later rejection of #16182.Andrew Godwin2011-06-171-7/+3
* Fixed #16182: Increase timestamp precision on TimestampSigner. Thanks to Eric...Andrew Godwin2011-06-101-3/+7
* Fixed #16078 -- Fixed a few typos in the signing documentation. Thanks, bruta...Jannis Leidel2011-05-231-1/+1
* Fixed #12417 -- Added signing functionality, including signing cookies. Many ...Jannis Leidel2011-05-211-0/+178