JWT

Decode JWT tokens

Frequently Asked Questions

What is a JWT?
JWT (JSON Web Token) is a compact, URL-safe token format for securely transmitting claims between parties. It consists of three parts: header, payload, and signature.
Is JWT encrypted?
Standard JWT (JWS) is signed but not encrypted - the payload is Base64 encoded and readable. For encryption, use JWE (JSON Web Encryption). Never store sensitive data in standard JWT.
What is the difference between HS256 and RS256?
HS256 uses symmetric key (same secret for signing and verifying). RS256 uses asymmetric keys (private key signs, public key verifies). RS256 is better for distributed systems.