summaryrefslogtreecommitdiff
path: root/tests/test_jwt.py
Commit message (Expand)AuthorAgeFilesLines
* DX Tweaks (#450)José Padilla2019-10-211-6/+2
* Removed all references to unittestMark Adams2015-04-141-18/+12
* Converted all unittest constructs to pytestMark Adams2015-04-141-5/+1
* Added a better explanation for TestJWT and why it exists.Mark Adams2015-03-171-1/+6
* Refactored tests to make things fit better with the new PyJWT object APIMark Adams2015-03-171-858/+4
* Refactored api.py so that all JWT functions are now part of a PyJWT class.Mark Adams2015-03-171-174/+179
* Made several changes to testing to increase code coverageMark Adams2015-01-251-47/+121
* Changed header's alg parameter to be case sensitive per the JWT spec.Mark Adams2015-01-241-0/+24
* Fix tests that used private APIapiJosé Padilla2015-01-181-66/+71
* Fixes #70. Refactored all HMAC, RSA, and EC code into seperate classes in the...Mark Adams2015-01-181-54/+18
* Drop usage of unicode_literals in all modulesWouter Bolsterlee2015-01-121-1/+0
* Correctly implement audience claim verificationWouter Bolsterlee2015-01-071-44/+9
* Rename exceptions that don't have Error in their nameWouter Bolsterlee2015-01-061-14/+14
* Merge pull request #58 from wbolster/issue-57José Padilla2015-01-051-2/+4
|\
| * Avoid ResourceWarning in testsWouter Bolsterlee2015-01-051-2/+4
* | Add failing test for specifying leeway as a datetime.timedeltaWouter Bolsterlee2015-01-051-12/+15
|/
* Fix test_encode_decode_with_ecdsa_sha384 so that it actually uses the key its...Mark Adams2014-12-241-5/+5
* Added some missing ensure_bytes in a couple of the tests.Mark Adams2014-12-181-31/+43
* Modified ECDSA algorithms to use cryptography library instead of ecdsa.Mark Adams2014-12-181-11/+7
* Modified RSA algorithms to use cryptography library instead of PyCryptoMark Adams2014-12-181-38/+38
* Added reference to unittest2 so that Python 2.6 can use skipIfMark Adams2014-12-171-1/+5
* Fixed tests so that they will still run without failure whenMark Adams2014-12-171-144/+132
* Added functionality and test.defyrlt2014-12-141-0/+25
* Implement Audience and Issuer claimsJosé Padilla2014-10-221-0/+120
* Merge pull request #40 from sullivanmatt/masterJosé Padilla2014-10-211-19/+190
|\
| * Merging in from latest master; resolving merge conflictsMatthew Sullivan2014-10-161-61/+61
| |\
| * \ Merge pull request #1 from progrium/masterMatthew Sullivan2014-09-221-0/+15
| |\ \
| * | | Adding ecdsa library to test requirements.Matthew Sullivan2014-09-221-0/+1
| * | | Fixing signature R and S value encoding, add tests for itMatthew Sullivan2014-09-221-1/+41
| * | | Increasing expiration length to get through all tests.Matthew Sullivan2014-09-201-7/+7
| * | | First pass at ECDSA testsMatthew Sullivan2014-09-201-0/+130
| * | | Rename RSA assets in testsMatthew Sullivan2014-09-201-12/+12
* | | | Fix test for new exception.Pieter Ennes2014-10-211-1/+1
* | | | Add support for alg="none".Pieter Ennes2014-10-211-0/+9
* | | | Unit tests for leeway and skip verification.Pieter Ennes2014-10-211-0/+34
* | | | Add not-before validation.Pieter Ennes2014-10-211-0/+16
| |_|/ |/| |
* | | Use single quotes instead of double quotesJosé Padilla2014-10-151-42/+42
| |/ |/|
* | Add test to verify bytes error in python 3Chris LaRose2014-09-201-0/+15
|/
* Added support for custom headers in encode methodvanzi2014-04-241-0/+9
* Added test cases for the changeJinyong Lee2014-03-141-2/+66
* Try to fix failing test in 3.2José Padilla2014-02-081-1/+1
* Fix tests for 2.6 supportJosé Padilla2014-02-081-58/+122
* add tests for load() and verify_signature()wil paredes2014-02-071-1/+74
* Update tests for optional CryptoJosé Padilla2014-01-181-21/+57
* Merge pull request #20 from mandus/masterJeff Lindsay2014-01-131-0/+28
|\
| * Added usage information in README, and added a few simple tests for the RSA s...Åsmund Ødegård2013-10-111-0/+28
* | Basic Python 3 compatibilityPatryk Zawadzki2013-11-061-22/+49
|/
* Add a check in jwt.encode for data type. Raise an error if it's not a mapping...FELD Boris2013-06-131-0/+8
* Add an option to skip expiration verification.FELD Boris2013-06-121-0/+6
* Cast expiration claim field to int if a datetime is passed. Check expiration ...FELD Boris2013-06-101-5/+22