pyjwt
Python implementation of JSON Web Token
Install
- All systems
-
curl cmd.cat/pyjwt.sh
- Debian
-
apt-get install python-jwt - Ubuntu
-
apt-get install python-jwt - Arch Linux
-
pacman -S python-pyjwt - Kali Linux
-
apt-get install python-jwt - CentOS
-
yum install python-jwt - Fedora
-
dnf install python3-jwt - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install python-jwt - Raspbian
-
apt-get install python-jwt
python-jwt
Python implementation of JSON Web Token
PyJWT implements the JSON Web Token draft 01, a way of representing signed content using JSON data structures. Supported algorithms for cryptographic signing: * HS256 - HMAC using SHA-256 hash algorithm (default) * HS384 - HMAC using SHA-384 hash algorithm * HS512 - HMAC using SHA-512 hash algorithm * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash algorithm * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash algorithm * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash algorithm Supported reserved claim names: - "exp" (Expiration Time) Claim
python3-jwt
Python 3 implementation of JSON Web Token
PyJWT implements the JSON Web Token draft 01, a way of representing signed content using JSON data structures. Supported algorithms for cryptographic signing: * HS256 - HMAC using SHA-256 hash algorithm (default) * HS384 - HMAC using SHA-384 hash algorithm * HS512 - HMAC using SHA-512 hash algorithm * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash algorithm * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash algorithm * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash algorithm Supported reserved claim names: - "exp" (Expiration Time) Claim This package contains the Python 3 version of the library.