Debug your JSON Web Tokens easily and securely on the client side
{}
{}
HMACSHA256( base64UrlEncode(header) + "." + base64UrlEncode(payload), your-256-bit-secret )
JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
Typically consists of two parts: the type of the token, which is JWT, and the signing algorithm being used, such as HMAC SHA256 or RSA.
Contains the claims. Claims are statements about an entity (typically the user) and additional data.
Used to verify that the sender of the JWT is who it says it is and to ensure that the message wasn't changed along the way.