HMAC 생성기 온라인 도구

Live 무료 · 가입 불필요 · 데이터 저장 안 함
Output
Secret Key
Error
MESSAGE
HMAC-SHA256256 bit
// waiting for input
HMAC-SHA512512 bit
// waiting for input
HMAC-SHA384384 bit
// waiting for input
HMAC-SHA1160 bit · legacy
// waiting for input

더 많은 개발 도구

해시 생성기
MD5/SHA-256
AES 암호화
AES-256
RSA 암호화
RSA-OAEP
JWT 디코더
토큰 확인
Base64
인코딩/디코딩
URL 인코더
퍼센트 인코딩
비밀번호 생성
안전한 난수
JSON 포매터
형식화·검증·압축

왜 이것이 최고의 온라인 HMAC 생성기인가

한 번에 네 가지 알고리즘

Computes HMAC-SHA256, HMAC-SHA512, HMAC-SHA384, and HMAC-SHA1 simultaneously from a single message and key input, so you can compare outputs or pick the right one for your use case.

실시간 계산

HMACs update instantly as you type — no button press required. Useful for debugging API signatures and webhook verification where you need to test different key or message combinations quickly.

Hex & Base64 출력

Switch between lowercase hex and Base64 output with one click. Most APIs (AWS, Stripe, GitHub) use hex; some use Base64. Both formats represent the same underlying HMAC value.

개인정보 우선

All HMAC computation uses the browser Web Crypto API — your message and secret key never leave your device. Safe for computing API signatures with real production keys.

자주 묻는 질문

What is HMAC?

HMAC (Hash-based Message Authentication Code) is a mechanism for verifying both the integrity and authenticity of a message. It combines a cryptographic hash function (like SHA-256) with a secret key, producing a fixed-size signature. Only someone with the same secret key can reproduce the same HMAC.

What is HMAC-SHA256 used for?

HMAC-SHA256 is used to sign API requests (e.g. AWS Signature v4, Stripe webhooks, GitHub webhooks), verify JWT signatures (HS256), authenticate WebSocket connections, and secure cookies. It is the most widely deployed HMAC variant.

Is HMAC the same as a hash?

No. A plain hash (like SHA-256) can be computed by anyone and does not prove authenticity. HMAC requires a secret key, so only parties that share the key can compute or verify the code. This makes HMAC suitable for authentication, while plain hashes are used for integrity and checksums.

How do I use HMAC to sign an API request?

Concatenate the components you want to sign (method, path, timestamp, body hash, etc.) into a canonical string, then compute HMAC-SHA256 of that string using your API secret key. Include the resulting hex or Base64 value in the Authorization header. Most API documentation specifies the exact canonical string format.

심층 가이드
개발자 보안 도구 가이드
해시, HMAC, AES, RSA & JWT
가이드 읽기