Skip to content

Kodowanie i Kryptografia

Dekoder JWT

Darmowy dekoder JWT. Dekoduj tokeny JSON Web Token, aby sprawdzić nagłówek i ładunek. Tokeny nigdy nie opuszczają Twojej przeglądarki. Do OAuth, debugowania uwierzytelniania, integracji API.

Runs in your browser

Notka redakcyjna

Understanding · Three Base64 sections, joined by dots.

Ten szczegółowy rozdział jest obecnie dostępny tylko w języku angielskim. Narzędzie konwersji powyżej działa w Twoim języku; długi artykuł objaśniający nie został jeszcze przetłumaczony.

Często zadawane pytania

Quick answers.

Does this verify the JWT signature?

No — the decoder shows header and payload only. Signature verification requires the issuer's secret or public key, which we never receive.

Is my token sent to your servers?

Never. Decoding runs entirely in your browser — tokens stay on your device.

What algorithms are supported?

Any JWT can be decoded (HS256, RS256, ES256, etc.) — decoding is algorithm-agnostic. Verification is the algorithm-specific step.

What does each part of a JWT contain?

Header: algorithm and token type. Payload: claims (sub, iat, exp, custom data). Signature: HMAC or signature over header.payload using a secret/key.

Is the decoder free?

Yes — fully free, no signup.

Ludzie wyszukują również

Use with

What people reach for next.

Powiązane narzędzia

More in this room.

Zobacz wszystkie w Kodowanie i Kryptografia