Paste a JWT token and secret key to verify the signature.
Free online JWT signature verifier. Validate JSON Web Token signatures. Supports HS256/HS384/HS512/RS256 algorithms. Pure frontend, no server. | No Signup, Client-Side · No Server Uploads
Zero Dependencies·Works OfflinePaste a JWT token and secret key to verify the signature.
A free online tool to verify JSON Web Token signatures. Supports HMAC algorithms, auto-decodes Header and Payload, checks token expiration.
JWT has three parts: Header (algorithm and type), Payload (claim data), Signature. Each part is Base64URL-encoded and joined with dots.
JWT (JSON Web Token) is an open standard (RFC 7519) for securely transmitting information between parties. It consists of Header, Payload, and Signature separated by dots.
Verification recalculates the signature using Header + Payload + secret key, then compares it with the signature in the JWT. If they match, the token is untampered.
Currently supports HMAC algorithms: HS256, HS384, HS512. These are symmetric algorithms using the same key for signing and verification.
This version supports HMAC symmetric algorithms only. RS256 and other asymmetric algorithms will be added in future versions.
All operations happen locally in your browser. Keys and tokens are never sent to any server. Avoid using real production keys.