summaryrefslogtreecommitdiff
path: root/tests/keys
Commit message (Collapse)AuthorAgeFilesLines
* Add JWK support for HMAC and RSA keysadd-jwk-for-hmac-rsaMark Adams2016-08-281-23/+7
| | | | | | | - JWKs for RSA and HMAC can be encoded / decoded using the .to_jwk() and .from_jwk() methods on their respective jwt.algorithms instances - Replaced tests.utils ensure_unicode and ensure_bytes with jwt.utils versions
* Added test vectors from the IETF JOSE Cookbook for HMAC, RSA, and EC.Mark Adams2015-05-186-0/+116
|
* Added tests to cover invalid string validations on HMACMark Adams2015-03-171-0/+21
|
* Made several changes to testing to increase code coverageMark Adams2015-01-255-0/+50
- Added a ton of tests to cover areas that weren't covered before - Added a pep8 tox env to run pep8 tests as part of the build - Moved keys into tests/keys - Added test_algorithms.py for algorithms module tests - Changed setup.py to run all tests in tests/