OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17200
/
usr
/
lib
/
python3
/
dist-packages
/
jwt
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
__init__.py
707 bytes
05/22/2015 03:50:55 PM
rw-r--r--
📄
__main__.py
3.49 KB
05/22/2015 03:50:55 PM
rw-r--r--
📁
__pycache__
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
algorithms.py
8.56 KB
08/29/2017 06:41:31 PM
rw-r--r--
📄
api_jws.py
6.01 KB
05/22/2015 03:50:55 PM
rw-r--r--
📄
api_jwt.py
6 KB
05/22/2015 03:50:55 PM
rw-r--r--
📄
compat.py
1.17 KB
05/22/2015 03:50:55 PM
rw-r--r--
📁
contrib
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
exceptions.py
643 bytes
04/26/2015 06:00:59 PM
rw-r--r--
📄
utils.py
1.53 KB
05/22/2015 03:50:55 PM
rw-r--r--
Editing: __init__.py
Close
# -*- coding: utf-8 -*- # flake8: noqa """ JSON Web Token implementation Minimum implementation based on this spec: http://self-issued.info/docs/draft-jones-json-web-token-01.html """ __title__ = 'pyjwt' __version__ = '1.3.0' __author__ = 'José Padilla' __license__ = 'MIT' __copyright__ = 'Copyright 2015 José Padilla' from .api_jwt import ( encode, decode, register_algorithm, unregister_algorithm, get_unverified_header, PyJWT ) from .api_jws import PyJWS from .exceptions import ( InvalidTokenError, DecodeError, InvalidAudienceError, ExpiredSignatureError, ImmatureSignatureError, InvalidIssuedAtError, InvalidIssuerError, ExpiredSignature, InvalidAudience, InvalidIssuer )