├── .circleci └── config.yml ├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── jwt ├── __init__.py ├── exceptions.py ├── jwa.py ├── jwk.py ├── jwkset.py ├── jws.py ├── jwt.py ├── py.typed └── utils.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── helper.py ├── test_jwa.py ├── test_jwk.py ├── test_jwkset.py ├── test_jws.py ├── test_jwt.py ├── test_utils.py └── testdata ├── dsa_privkey.pem ├── oct.json ├── rsa_privkey.der ├── rsa_privkey.json ├── rsa_privkey.pem ├── rsa_privkey_full.json ├── rsa_pubkey.json └── rsa_pubkey.pem /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/README.rst -------------------------------------------------------------------------------- /jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/__init__.py -------------------------------------------------------------------------------- /jwt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/exceptions.py -------------------------------------------------------------------------------- /jwt/jwa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/jwa.py -------------------------------------------------------------------------------- /jwt/jwk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/jwk.py -------------------------------------------------------------------------------- /jwt/jwkset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/jwkset.py -------------------------------------------------------------------------------- /jwt/jws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/jws.py -------------------------------------------------------------------------------- /jwt/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/jwt.py -------------------------------------------------------------------------------- /jwt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/jwt/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/test_jwa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_jwa.py -------------------------------------------------------------------------------- /tests/test_jwk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_jwk.py -------------------------------------------------------------------------------- /tests/test_jwkset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_jwkset.py -------------------------------------------------------------------------------- /tests/test_jws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_jws.py -------------------------------------------------------------------------------- /tests/test_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_jwt.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testdata/dsa_privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/dsa_privkey.pem -------------------------------------------------------------------------------- /tests/testdata/oct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/oct.json -------------------------------------------------------------------------------- /tests/testdata/rsa_privkey.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_privkey.der -------------------------------------------------------------------------------- /tests/testdata/rsa_privkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_privkey.json -------------------------------------------------------------------------------- /tests/testdata/rsa_privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_privkey.pem -------------------------------------------------------------------------------- /tests/testdata/rsa_privkey_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_privkey_full.json -------------------------------------------------------------------------------- /tests/testdata/rsa_pubkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_pubkey.json -------------------------------------------------------------------------------- /tests/testdata/rsa_pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/python-jwt/HEAD/tests/testdata/rsa_pubkey.pem --------------------------------------------------------------------------------