Solo en el navegador
La generacion y la exportacion se quedan en el navegador.
Genera secretos webhook aleatorios y seguros para verificacion HMAC, callbacks de API y autenticacion entre servicios.
Crea secretos privados para verificar firmas de webhook, autenticar callbacks y validar servicios internos.
El valor recomendado para sistemas de produccion.
Legible y facil de guardar en variables de entorno.
Un valor por defecto practico para la mayoria de integraciones.
Secreto
La generacion aleatoria segura no esta disponible en este navegador.Formato .env
WEBHOOK_SECRET=Always verify the signature using the raw request body before parsing JSON.
| Item | Webhook Secret | API Key |
|---|---|---|
| Main purpose | Verify incoming webhook payloads | Authenticate API requests |
| Direction | Sender to receiver | Client to API |
| Common usage | HMAC signature verification | API access control |
| Should it be public? | No | No |
| Where to store it? | Environment variables or secret manager | Environment variables or secret manager |
A webhook secret is a private random value used to verify that a webhook request came from a trusted sender. It is usually used with HMAC signatures.
Yes. The tool uses the browser Web Crypto API to generate cryptographically secure random bytes.
No. The secret is generated locally in the browser and is never sent to a server by this tool.
Use at least 32 random bytes for production. The default in this tool is 48 bytes.
Hex is easy to read and store in environment variables. Base64url is shorter and URL-safe. Hex is the default here for simplicity.
No. Store webhook secrets in environment variables, deployment platform secrets, or a secret manager.
No. An API key is usually used by a client to access an API. A webhook secret is usually used by a receiver to verify that an incoming webhook request is authentic.
Abre la pagina completa para comparar herramientas y cambiar a otra.
La generacion y la exportacion se quedan en el navegador.
Tu entrada nunca se envia a un servidor.
Al recargar se limpian la entrada y la salida.