Decode, verify, and generate JSON Web Tokens, which are an open, industry standard RFC 7519method for representing claims securely between two parties.
Enter the secret used to sign the JWT below:
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
your-256-bit-secret
)