blob: a9761dcddf6ccc37f0b8ac359681d7663e4fb625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
title: HMAC(密钥散列消息认证码)
slug: Glossary/HMAC
tags:
- Hash
- 哈希
- 安全
- 密码学
- 术语
translation_of: Glossary/HMAC
---
<p><span class="seoSummary"><abbr title="密钥散列消息认证码">HMAC</abbr> (密钥散列消息认证码)是一个被用于{{Glossary("cryptography", "密码学")}}的认证消息协议。</span>它可以使用于任何的{{Glossary("Cryptographic hash function", "密码学函数")}}。它的强度依赖底层的函数(例如 SHA1 或 MD5)以及被选中的密钥。出于这样使用上的组合,HMAC 认证{{Glossary("Algorithm", "算法")}}通常是以组合名字出现,如 HMAC-SHA1。</p>
<p>HMAC 通常用于确保完整性和身份验证。</p>
<h2 id="了解更多">了解更多</h2>
<h3 id="基础知识">基础知识</h3>
<ul>
<li>维基百科上的 {{Interwiki("wikipedia", "密钥散列消息认证码", "HMAC")}}</li>
</ul>
<h3 id="技术参考">技术参考</h3>
<ul>
<li>
<p>IETF 的 <a href="http://www.ietf.org/rfc/rfc2104.txt">RFC 2104</a></p>
</li>
</ul>
|