Kodlama
JWT Encoder/Decoder
JWT token kodlama ve çözme — header, payload, HMAC imzası ve standart alanlar.
İmzalı örnekler (none hariç hepsi) HTTPS gerektirir — sayfa şu anda HTTPS olmadan açık.
RS/PS/ES için anahtar otomatik ve geçici olarak oluşturulur — yalnızca gösterim amaçlıdır, yeniden kullanılamaz.
İmzalı örnekler (none hariç hepsi) HTTPS gerektirir — sayfa şu anda HTTPS olmadan açık.
Claims
Sıkça sorulan sorular
Does decoding a JWT verify its signature?
No. Decoding just base64url-decodes the header and payload so you can read the claims — it does not prove the token is authentic. To actually verify a signature you need the correct secret or public key entered here.
Is it safe to paste a real JWT into this tool?
Decoding and signing happen entirely in your browser — the token and any secret you enter are never sent to a server. Still, treat tokens from production systems carefully, since anyone who sees a decoded JWT can read its claims.
Why does my token show as expired even though it still works in my app?
The Expired/Valid indicator here only compares the exp claim to the current time — it doesn't check clock skew tolerances or other validation rules your server or library might apply.