JSON Web Token library
-
Updated
Apr 29, 2023 - Go
JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.
JSON Web Token library
A fast and simple JWT implementation for Go
Refresh/Access JWT authentication server with backend + administration frontend supporting HMAC (HS256 HS384 HS512), RSA (RS256 RS384 RS512), ECDSA (ES256 ES384 ES512) and Ed25519 (EdDSA). See also other repos for Javascript, Python and Go client libraries.
jwt-cli is a tool to encode/decode JWT token
A command line program that offer number of tools for JWT using JWS and JWE
A Golang application that serves an HTTP endpoint for generating JSON Web Tokens (JWTs).
🔑 Service for working with JWTs in a local development environment
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA o…
JSON Web Token library
Created by M. Jones, J. Bradley, N. Sakimura
Released May 2015