Like this tool?
Install byteflow.tools for faster startup and offline tool access.
Install guideLike this tool?
Install byteflow.tools for faster startup and offline tool access.
Install guideVerify JWT signatures (HMAC) and validate claims — all client-side.
Verify JWT HMAC signatures and inspect token claims locally to speed up authentication debugging without external services.
It decodes JWT header and payload segments for readable inspection.
It verifies HS256, HS384, and HS512 signatures using a provided secret key.
It evaluates common claims such as exp, nbf, iat, iss, aud, and sub.
It highlights signature validity and claim-status context for faster triage.
JWT input
eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjMifQ.signature
Secret input
your-hmac-secret
Claim check
exp and nbf timestamps in payload
Signature result
Signature Valid (HS256)
Decoded payload
{ "sub": "123", "exp": 1760000000, ... }Claims panel
exp valid, nbf valid/invalid, iat info, issuer and audience values
Token has invalid segment count
Ensure token includes header.payload.signature format.
Unsupported algorithm in token header
Use HS256/HS384/HS512 for this verifier mode.
Signature marked invalid unexpectedly
Verify secret value, whitespace, and exact token input.
Claim times appear wrong
Interpret epoch times in UTC and compare against current clock.
Decode succeeds but verify fails
Remember decoding does not imply signature validity.
JWT Signature Verifier should be treated as a repeatable validation step before merge, release, and handoff.
Does this support asymmetric JWT algorithms?
This verifier page is focused on HMAC-based JWT algorithms.
Can I inspect claims without a secret?
Yes, decoding works without signature verification.
Why is signature still invalid with correct-looking token?
Secret mismatch or algorithm mismatch is usually the cause.
Is claim validation automatic for all fields?
Core timestamp claims are checked; business rules remain app-specific.
Can I copy decoded JSON quickly?
Yes, header and payload panels support copy actions.