JWT Validator
Verify a JWT’s HS256 signature with your secret and check its expiry. Verified in your browser — nothing is uploaded.
How it works
Frequently Asked Questions
That the HS256 signature matches your secret — i.e. the token is authentic and unmodified. It also flags an expired token separately.
HS256 (HMAC-SHA256), the most common symmetric signing algorithm.
No — verification runs in your browser with the Web Crypto API, so nothing is sent anywhere.
Verify a JSON Web Token (JWT) online for free. Paste a token and its HMAC secret to check the HS256 signature — confirming the token is authentic and hasn’t been tampered with — and see the decoded header and payload with an expiry check. Verification uses the browser’s Web Crypto API, so your token and secret never leave your device. Use it alongside the JWT decoder and generator for a complete JWT workflow.