Skip to main content
DevTools24

Gerador HMAC

Gere assinaturas HMAC (Código de Autenticação de Mensagem Baseado em Hash) usando SHA-256, SHA-512 e outros algoritmos.

HMAC (Hash-based Message Authentication Code) is used to verify both data integrity and authenticity.

Common uses: API authentication, webhook signatures, JWT signing, secure cookies.

Autenticação HMAC - Detalhes Técnicos

HMAC combina uma função de hash criptográfico com uma chave secreta para verificar integridade e autenticidade de mensagens. É comumente usado em autenticação de API, webhooks e comunicações seguras.

Alternativa via Linha de Comando

// HMAC-SHA256 example\nHMAC(key, message) = hash(key XOR opad || hash(key XOR ipad || message))\n\n// Used in: AWS Signature, GitHub webhooks, Stripe