aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/hmac
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/hmac
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/glossary/hmac')
-rw-r--r--files/zh-cn/glossary/hmac/index.html30
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>