JSON Web Token Authentication
Project description
Introduction
JSON Web Token (JWT) Authentication module for CircuitPython. JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
- This library currently supports the following signature algorithms for JWT generation and verification:
No encoding (“none”)
RS256/SHA-256 (via Adafruit_CircuitPython_RSA)
RS384/SHA-384 (via Adafruit_CircuitPython_RSA)
RS512/SHA-512 (via Adafruit_CircuitPython_RSA)
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-jwt
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-jwt
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-jwt
Usage Example
Generating encoded JWT
import adafruit_jwt
# Import Private RSA key from a secrets.py file
try:
from secrets import secrets
except ImportError:
print("WiFi secrets are kept in secrets.py, please add them there!")
raise
# Create JWT Claims
claims = {"iss": "joe",
"exp": 1300819380,
"name": "John Doe",
"admin": True}
# Generate JWT, sign with RSA private key and RS-256
encoded_jwt = adafruit_jwt.JWT.generate(
claims, secrets["private_key"], algo="RS256")
print("Encoded JWT: ", encoded_jwt)
Validating a generated JWT, encoded_jwt.
import adafruit_jwt
decoded_jwt = adafruit_jwt.JWT.validate(encoded_jwt)
# The decoded JWT's JOSE header and claims set are returned as a tuple
print('JOSE Header: {}\nJWT Claims: {}'.format(decoded_jwt[0], decoded_jwt[1]))
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adafruit_circuitpython_jwt-1.2.18.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_jwt-1.2.18.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b00698b738875d12bc72fcbffb3ccabcfbdd414bcea39649d7ba2ea967284a2 |
|
MD5 | f503d45222a3ce527943a107ce371bae |
|
BLAKE2b-256 | b90fb7a31392a8f6faf81f37970f0ebd0743688b854b8c465c8fb36cbd1373f5 |
File details
Details for the file adafruit_circuitpython_jwt-1.2.18-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_jwt-1.2.18-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc35cc96c0918aef2b84036dc2ef4b1cd55dbc07b6b587dc8861f35b24c0fcaa |
|
MD5 | e7d693791e2b36d0a1fbeb30ede0615a |
|
BLAKE2b-256 | c89f6a06a79d98069488050d8ae2f09ed4ed0fc6a95cedc2246b9f33cad3c7e4 |