Initial Release - CircuitPython JWT
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)
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.