index
:
delta/python-packages/pyjwt.git
190-remove-iat-verification
2.0-develop
a1
add-docs
add-jwk-for-hmac-rsa
add-python-35
api
bionic
bring-verify_expiration-back
bump-version
changelog
cleanup-action
cleanup-pr305
deprecations
dx-tweaks
ecdsa-bkwards-compat
fix-298
fix-351
fix-cli-script
fix-ec-ssh-pub-key
fix-flake8
fix-from-jwk
fix-key-errors
fix-mypy
fix-type-error-on-bytes-key
fix-vuln
fix_alg_vuln_on_verify
followup-523
improve-usage
madams/cleanup-test-skips
madams/test
madams/test2
master
new-release
pre-commit-ci-update-config
prep-release
py36
pytest-version-bump
remove-cli
revert-657-remove-arbitrary-kwargs
string-tokens
travis-windows
update-changelog
v2-jwks
version-2.0.0
version-2.0.1
github.com: progrium/pyjwt.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
jwt
/
__init__.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Bump up version to v1.4.0
1.4.0
José Padilla
2015-07-16
1
-1
/
+1
*
Added new options for requiring exp, iat, and nbf claims.
Mark Adams
2015-06-02
1
-1
/
+2
*
Preparing for 1.3 release
Mark Adams
2015-05-22
1
-1
/
+1
*
Added get_unverified_header to public API
Mark Adams
2015-05-09
1
-1
/
+2
*
Bump up version
1.2.0
José Padilla
2015-04-28
1
-1
/
+1
*
Removed an extra attempt to encode the payload that I missed when I was refac...
Mark Adams
2015-04-19
1
-0
/
+1
*
Refactored JWS-specific logic out of PyJWT and into PyJWS superclass
Mark Adams
2015-04-19
1
-1
/
+1
*
Bump up version
José Padilla
2015-04-15
1
-1
/
+1
*
Added checks on iat to make sure that a token can't be issued for the
Mark Adams
2015-03-29
1
-3
/
+3
*
Bump up version
v1.0.1
1.0.1
José Padilla
2015-03-26
1
-1
/
+1
*
Bump up version
José Padilla
2015-03-18
1
-1
/
+1
*
Added unregister_algorithm to the public API
Mark Adams
2015-03-17
1
-1
/
+3
*
Refactored api.py so that all JWT functions are now part of a PyJWT class.
Mark Adams
2015-03-17
1
-1
/
+1
*
Bump up version
0.4.3
José Padilla
2015-02-18
1
-1
/
+1
*
Make deprecated exception names available
José Padilla
2015-02-18
1
-1
/
+2
*
Bump up version
0.4.2
José Padilla
2015-02-18
1
-1
/
+1
*
Cleanup __init__ module
José Padilla
2015-01-18
1
-234
/
+12
*
Tweak comment blocks
José Padilla
2015-01-18
1
-1
/
+3
*
Added comments for algorithms module and register_algorithm.
Mark Adams
2015-01-18
1
-0
/
+1
*
Fixed a couple of anomalies after the last rebase.
Mark Adams
2015-01-18
1
-3
/
+2
*
Moved jwt.algorithms imports back to their original location
Mark Adams
2015-01-18
1
-1
/
+1
*
Fixed some style issues (reordered imports, removed unused imports, PEP8, etc.)
Mark Adams
2015-01-18
1
-6
/
+8
*
Created utils.py to hold functions like constant_time_compare and base64-enco...
Mark Adams
2015-01-18
1
-14
/
+1
*
Fixes #70. Refactored all HMAC, RSA, and EC code into seperate classes in the...
Mark Adams
2015-01-18
1
-175
/
+23
*
Drop usage of unicode_literals in all modules
Wouter Bolsterlee
2015-01-12
1
-1
/
+0
*
Bump up version
0.4.1
José Padilla
2015-01-08
1
-1
/
+1
*
Fix missing comma in __all__
José Padilla
2015-01-08
1
-1
/
+1
*
Handle string and text types like six
José Padilla
2015-01-08
1
-12
/
+13
*
Add timedelta_total_seconds compat branching
José Padilla
2015-01-07
1
-2
/
+3
*
Handle compatibility branching in a compat module
José Padilla
2015-01-07
1
-45
/
+2
*
Also make sure audience claims in token contain only strings
Wouter Bolsterlee
2015-01-07
1
-0
/
+2
*
Correctly implement audience claim verification
Wouter Bolsterlee
2015-01-07
1
-7
/
+14
*
Rename exceptions that don't have Error in their name
Wouter Bolsterlee
2015-01-06
1
-9
/
+27
*
Rename InvalidToken exception to InvalidTokenError
Wouter Bolsterlee
2015-01-06
1
-6
/
+6
*
Add a base InvalidToken exception for others to extend
Wouter Bolsterlee
2015-01-06
1
-6
/
+10
*
Merge pull request #66 from wbolster/issue-65
José Padilla
2015-01-06
1
-0
/
+4
|
\
|
*
Verify that decoded header and payload are json objects
Wouter Bolsterlee
2015-01-06
1
-0
/
+4
*
|
Drop unneeded **kwargs magic
Wouter Bolsterlee
2015-01-06
1
-9
/
+3
|
/
*
Merge pull request #64 from wbolster/issue-63
José Padilla
2015-01-05
1
-20
/
+24
|
\
|
*
Use constant time string comparison routine from hmac module
Wouter Bolsterlee
2015-01-05
1
-20
/
+24
*
|
Add Python 2.6 compatibility for leeway as timedelta
Wouter Bolsterlee
2015-01-05
1
-1
/
+8
*
|
Allow datetime.timedelta instances for leeway argument
Wouter Bolsterlee
2015-01-05
1
-1
/
+5
|
/
*
Remove unused import
José Padilla
2014-12-31
1
-2
/
+3
*
Fixes #55
José Padilla
2014-12-31
1
-2
/
+2
*
Update public API. Closes #53
José Padilla
2014-12-31
1
-1
/
+4
*
Fixed version for release
0.4.0
José Padilla
2014-12-23
1
-1
/
+1
*
Incremented version to 0.4
Mark Adams
2014-12-20
1
-1
/
+1
*
Added some missing ensure_bytes in a couple of the tests.
Mark Adams
2014-12-18
1
-1
/
+3
*
Modified ECDSA algorithms to use cryptography library instead of ecdsa.
Mark Adams
2014-12-18
1
-21
/
+30
*
Modified RSA algorithms to use cryptography library instead of PyCrypto
Mark Adams
2014-12-18
1
-14
/
+45
[next]