JWT Debugger

Decodifica, analiza y verifica JSON Web Tokens de forma segura. Pega un token para ver su contenido en tiempo real.

Advertisement
Tip 💡: El JWT Decoder te permite leer el contenido de un token (Header y Payload) y verificar criptográficamente si la firma es auténtica. Ideal para depurar errores de autenticación.

Encoded JWT Esperando Token...

Decoded Header (Algoritmo & Tipo)

Decoded Payload (Datos)

Verificar Firma (Signature) - Solo HS256 Esperando Clave...

HMACSHA256( base64UrlEncode(header) + "." + base64UrlEncode(payload), tu_clave_secreta )

Tip 💡: El JWT Encoder te permite crear un token desde cero. Edita el JSON del Header y el Payload, escribe una clave secreta y generaremos el Token firmado.

Header (JSON)

Payload (JSON)

Clave Secreta (Secret)

Encoding Format

Generated JWT

El token aparecerá aquí...
Tip 💡: JWE Encrypt (JSON Web Encryption) encripta los datos para que nadie pueda leerlos sin la clave privada. A diferencia del JWT estándar (que cualquiera puede leer), JWE garantiza total confidencialidad.
JWE Example:

Payload a Encriptar (JSON)

Algorithm (alg)

Encryption Method (enc)

Public Key (PEM, JWK JSON o Secret String para 'dir')

Key Format

JWE Output

El token cifrado aparecerá aquí...
Tip 💡: JWE Decrypt toma un token JWE cifrado y utiliza una clave privada o secreta para revelar su contenido original oculto.
JWE Example:

JWE Input

Private Key (PEM, JWK JSON o Secret String para 'dir')

Key Format

Decoded JWE Header

Decoded JWT Header

Decoded Payload

JWT Output

Tip 💡: JWK Generator (JSON Web Key) crea llaves criptográficas seguras (RSA, EC, Octet) formateadas en JSON para su uso en sistemas de autenticación y firmado de JWTs.

Configuración de Llave

JWK Generado

Advertisement (In-Article)

What is JWT Debugger and how does it work?

Decodifica, analiza y verifica JSON Web Tokens de forma segura. Pega un token para ver su contenido en tiempo real.. This free online tool is designed to be fast, secure, and easy to use directly from your browser without any downloads.

How to use this tool

Follow these simple steps to get the best results instantly:

  1. Select your preferred options or input your data into the panel.
  2. Click the main action button to start the process.
  3. Review your results instantly on the screen.

100% Privacy Guaranteed 🔒

We value your privacy. All processing is done locally on your device. No data is ever sent to or stored on our servers.