Monu Tools

Tạo HMAC

Tạo một HMAC cho một thông điệp và khóa secret bằng SHA-1, SHA-256, SHA-384 hoặc SHA-512, trong trình duyệt của bạn.

Cách dùng HMAC

  1. 01

    Chọn một thuật toán băm.

  2. 02

    Nhập khóa secret và thông điệp của bạn.

  3. 03

    Sao chép HMAC, được hiển thị dưới dạng hex digest.

Sign a message with a key

An HMAC generator that signs a message with a secret key using SHA-1, SHA-256, SHA-384 or SHA-512, and shows the result as a hex digest. Pick an algorithm, enter the key and the message, and copy the signature.

What an HMAC proves

HMAC stands for hash-based message authentication code. It is a keyed hash: combining a secret key with the message proves two things at once, that the message was created by someone who holds the key, and that it has not been altered in transit.

The difference from a plain hash is the key. Anyone can compute a SHA-256 of a message, but only someone with the shared secret can produce the correct HMAC, which is what turns a checksum into proof of authenticity.

Where HMAC shows up

That is why it is everywhere in web infrastructure. Webhooks from services like Stripe, GitHub and Slack sign each request with an HMAC so your server can verify the call really came from them, and many APIs sign requests the same way.

Choosing an algorithm

SHA-256 is the common default; SHA-384 and SHA-512 are stronger, while SHA-1 is legacy and best avoided for new systems.

Security note

It runs locally with the Web Crypto API, so your key and message are never uploaded, which is important since the key is a secret.

Câu hỏi thường gặp

HMAC là gì?

Một hàm băm có khóa chứng minh một thông điệp được tạo bởi người nắm khóa secret và không bị thay đổi. Nó được dùng rộng rãi để ký yêu cầu API và webhook.

Secret của tôi có được gửi đi đâu không?

Không. HMAC được tính trong trình duyệt của bạn bằng Web Crypto API, nên khóa và thông điệp không bao giờ rời khỏi thiết bị.

Tôi nên dùng thuật toán nào?

SHA-256 là mặc định phổ biến. SHA-384 và SHA-512 mạnh hơn; SHA-1 là cũ và nên tránh cho hệ thống mới.

Nguồn

Nhúng công cụ này

Thêm công cụ này vào trang web của riêng bạn. Sao chép đoạn mã bên dưới; nó tự động cập nhật.

<iframe src="https://monu.tools/embed/vi/hmac-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

Công cụ liên quan