Codificadores y Cifrado
Creador de JWT (HS256)
Sign a JWT with HMAC-SHA256 — in your browser.
Nota del editor
Understanding · A signature, not a secret.
Este capítulo en profundidad está disponible solo en inglés por el momento. La herramienta de conversión de arriba funciona en tu idioma; el artículo explicativo extenso aún no se ha traducido.
Preguntas frecuentes
Quick answers.
›Is my secret key safe?
Yes. The hashing and signature generation take place entirely within your browser using the Web Crypto API. Your secret key is never sent to our servers.
›What is HS256?
HS256 stands for HMAC with SHA-256. It is a symmetric signing algorithm, meaning the same secret key is used to both create the signature and verify it later.
›Why is the output divided into three parts?
A JWT consists of a header, a payload, and a signature, each separated by a dot. They are Base64Url encoded to ensure they can be safely transmitted in HTTP headers or URLs.
›Can I use this for production tokens?
While technically valid, this tool is intended for debugging and development testing. For production environments, you should use standard libraries to automate token generation within your application code.
La gente también busca
Herramientas relacionadas
More in this room.
- Firmador JWT (Pro)Todos los algoritmos — HS / RS / ES / PS / EdDSA.
- Decodificador JWTDecodifica e inspecciona tokens JWT — localmente, nunca registrados.
- Codificar / Decodificar Base64Codifica y decodifica Base64 — seguro para Unicode.
- Codificar / Decodificar URLCodifica y decodifica URLs de forma segura.
- Generador de Hash (SHA-1/256/384/512)SHA-1, SHA-256, SHA-384, SHA-512 — todo en el navegador.
- Codificar / Decodificar Entidades HTMLEscapa o desescra los caracteres especiales de HTML.