diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/web_crypto_api | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/web_crypto_api')
-rw-r--r-- | files/zh-cn/web/api/web_crypto_api/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/web_crypto_api/index.html b/files/zh-cn/web/api/web_crypto_api/index.html new file mode 100644 index 0000000000..9242c9a247 --- /dev/null +++ b/files/zh-cn/web/api/web_crypto_api/index.html @@ -0,0 +1,47 @@ +--- +title: Web Crypto API +slug: Web/API/Web_Crypto_API +translation_of: Web/API/Web_Crypto_API +--- +<p>{{DefaultAPISidebar("Web Crypto API")}}</p> + +<p><strong>Web Crypto API</strong> 为脚本提供加密了一套关于密码(学)的接口,以便用于构建需要使用密码的系统。</p> + +<div class="warning"> +<p><strong>警告:</strong> Web Crypto API 提供了许多底层的密码学原语。它们很容易被误用,并且踩到一些微妙的陷阱。</p> + +<p>即使正确地使用了这些基础的密码学函数,密钥管理和整体的安全系统设计也是非常困难的,这些通常都是属于安全专家的领域。</p> + +<p>安全系统设计和实现过程中出现的错误可以使得整个系统的安全性不复存在。</p> + +<p><strong>如果你不确定你知道自己在做什么,那么你可能不应该使用这些 API。</strong></p> +</div> + +<h2 id="接口">接口</h2> + +<p>有些浏览器实现了叫做 {{domxref("Crypto")}} 的接口,但是缺乏良好的定义,或在密码学上是不健全的。为了避免混乱,这个接口的方法和属性已经被实现 Web Crypto API 的浏览器所移除,并且所有的 Web Crypto API 方法都可以在新的接口中使用: {{domxref("SubtleCrypto")}}。{{domxref("Crypto.subtle")}} 属性可以获取到一个实现了新接口的对象。</p> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("Web Crypto API")}}</td> + <td>{{Spec2("Web Crypto API")}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<p>{{Compat("api.Crypto")}}</p> + +<div> </div> |