Inspect token
Input: A three-part JWT string
Result: Decoded header and payload fields when the token can be parsed.
Inspect JWT header and payload data and create HMAC-signed JWTs for development work with HS256, HS384, or HS512 signing modes.
Use this tool to confirm your JWT is being generated with the metadata and claims you expect, or to examine JWTs other systems are creating to discover their properties. Above is a sample JWT you can copy and paste into the decoder to try it out.
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),)
About this tool
Inspect JWT header and payload data and create HMAC-signed JWTs for development work with HS256, HS384, or HS512 signing modes.
Input: A three-part JWT string
Result: Decoded header and payload fields when the token can be parsed.
JWTs can contain sensitive claims. Treat pasted tokens and signing secrets as credentials and use test values whenever possible.
Common questions about how JWT Decoder and Signer works and what to expect from the current AiFolder implementation.
No. Header and payload data are readable without verification, so authenticity requires signature validation with the correct key and algorithm.
The current signer is intended for the HMAC SHA family choices HS256, HS384, and HS512.
Use test credentials where possible. Production signing secrets should be handled as sensitive credentials and kept out of unnecessary tooling.