Codificadores y Cifrado
Generador HMAC
Generador HMAC gratuito. Crea firmas HMAC con SHA-1, 256, 384 o 512 y cualquier secreto. Salida Hex y Base64. Para firma de webhooks, autenticación de API.
Nota del editor
Understanding · A signature, with a shared 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.
›What is HMAC?
Hash-based Message Authentication Code — a way to verify a message hasn't been tampered with using a shared secret. Common in webhook signing.
›Is HMAC encryption?
No — HMAC is authentication. The message itself is in cleartext; HMAC just lets the receiver verify it came from someone with the same secret.
›Which algorithm should I use?
HMAC-SHA256 is the modern default. HMAC-SHA1 is still common in older systems but should be avoided for new work.
›Is my secret sent to a server?
No — generation runs entirely in your browser via the Web Crypto API.
›Is the generator free?
Yes — fully free, no signup.
La gente también busca
Lectura relacionada
Del blog.(3)
Use with
What people reach for next.
Herramientas relacionadas
More in this room.
- Generador de Hash (SHA-1/256/384/512)SHA-1, SHA-256, SHA-384, SHA-512 — todo en el navegador.
- Calculadora de Hash de ArchivosSHA-256, SHA-1 y MD5 de cualquier archivo — en tu navegador.
- Codificar / Decodificar Base64Codifica y decodifica Base64 — seguro para Unicode.
- Decodificador JWTDecodifica e inspecciona tokens JWT — localmente, nunca registrados.
- Codificar / Decodificar URLCodifica y decodifica URLs de forma segura.
- Codificar / Decodificar Entidades HTMLEscapa o desescra los caracteres especiales de HTML.