Skip to content

Initial Release - CircuitPython JWT

Compare
Choose a tag to compare
@brentru brentru released this 21 Aug 20:42
2c9fac0

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.