summaryrefslogtreecommitdiff
path: root/itsdangerous.py
Commit message (Expand)AuthorAgeFilesLines
* move to src directoryDavid Lord2018-09-281-906/+0
* update metadataDavid Lord2018-09-261-7/+8
* Convert `exp` header to int if it is valid IntDateSanan Guliyev2018-04-241-0/+5
* change default intermediate hash from SHA-1 to SHA-512David Lord2017-03-161-8/+14
* Make `load_payload()` signature consistent between types (#75)Ɓukasz Langa2017-01-061-4/+4
* Forbid unsafe separatorsMarkus Unterwaditzer2016-08-211-1/+12
* Fix frontpage exampleMarkus Unterwaditzer2016-08-211-1/+3
* Fix typo (wheather ~> whether) (#65)Christian Rotzoll2016-07-231-1/+1
* Fix misleading EPOCH comment. (#64)Steve Perkins2016-07-071-2/+1
* Revert "JWT Serializer sets default media type header"David Lord2016-04-131-6/+1
* JWT Serializer sets default media type headerRussell Davies2016-04-131-1/+6
* Replace base64 decoding errors with BadData.Lucian Branescu Mihaila2016-04-121-1/+6
* clean up serializer_kwargs, closes pr #36David Lord2016-04-111-18/+28
* Allows kwargs to be passed to serializer's dumpsMarcus McCurdy2016-04-111-8/+9
* More compact JSON dumps for unicode strings (#38)Taha Jahangir2016-04-111-1/+1
* use full timestamps, no cutoff at 2011, fixes #46David Lord2016-04-111-6/+2
* docs show copyright range to current yearDavid Lord2016-04-111-1/+1
* tag dev buildsDavid Lord2016-04-111-0/+2
* fix url in TimedJSONWebSignatureSerializer docstring, close #31David Lord2016-04-111-1/+1
* use struct to convert int to/from bytesDavid Lord2016-04-111-19/+15
* Use rstrip instead of stripEeo Jun2016-04-021-1/+1
* typo in Serializer docstringTristan Escalada2016-04-021-1/+1
* fix typoMax Countryman2016-04-021-1/+1
* Make signature verification not fail on invalid padding.Armin Ronacher2014-03-281-1/+4
* Bump the dateArmin Ronacher2014-03-281-1/+1
* Fixed a typoArmin Ronacher2013-11-131-1/+1
* Added a BadHeader exceptionArmin Ronacher2013-08-091-4/+39
* Changed the documentation about the TImedJSONWebSignatureSerializerArmin Ronacher2013-07-031-3/+3
* Moved signature verification to the SigningAlgorithm class to allow for asymm...Arnout van Meer2013-07-011-1/+11
* Removed code duplication and prevents mutating passed in header_fieldsArnout van Meer2013-06-021-9/+8
* Fixed tests for 3.3Armin Ronacher2013-06-021-3/+5
* Fixed and cleaned up implementation for pull request 19Armin Ronacher2013-06-021-24/+37
* Check for type and constraint in one goJan Brauer2013-05-301-1/+1
* Add TimedJSONWebSignatureSerializerJan Brauer2013-05-301-0/+47
* load_payload: fix wrong compression check, fix wrong datatype in testThomas Waldmann2013-05-261-1/+1
* Fixed a bug in Python 2.6Armin Ronacher2013-05-231-1/+1
* Use the stdlib digest_compare if availableArmin Ronacher2013-05-221-0/+7
* Fixed a docstring and introduced a use of want_bytesArmin Ronacher2013-05-221-4/+2
* Fundamentally changed unicode/byte dumping behavior for Python 3Armin Ronacher2013-05-221-74/+74
* Removed six and fixed support for Python 3 stdlib JSON.Armin Ronacher2013-05-221-34/+57
* py3 compat: manually fix unicode/bytesThomas Waldmann2013-05-191-34/+46
* fix default salt bug in make_signerThomas Waldmann2013-05-191-1/+1
* do not use %s%s to concatenate bytestrings (doesn't work with py3), cleanup e...Thomas Waldmann2013-05-181-15/+15
* py3 compat: fix base64_(en|de)code, int_to_bytes / bytes_to_intThomas Waldmann2013-05-181-10/+16
* py3 compat: fix str/unicode for exception base classThomas Waldmann2013-05-181-2/+4
* manual py3 compat fixesThomas Waldmann2013-05-181-4/+3
* automated changes by python-modernize (without fix_unicode for now)Thomas Waldmann2013-05-181-6/+7
* Allow header to remain JSON even if someone changes the payload serializer0.18Armin Ronacher2013-05-031-4/+8
* Sanity check in case the header payload is not a dictionaryArmin Ronacher2013-05-031-2/+4
* Added alg back to the header and added support for loads_unsafeArmin Ronacher2013-05-031-5/+22