diff options
Diffstat (limited to 'files/zh-cn/glossary/hmac/index.html')
-rw-r--r-- | files/zh-cn/glossary/hmac/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/hmac/index.html b/files/zh-cn/glossary/hmac/index.html new file mode 100644 index 0000000000..a9761dcddf --- /dev/null +++ b/files/zh-cn/glossary/hmac/index.html @@ -0,0 +1,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> |