aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/crypto/index.html
blob: 25056293b3d29653ff553fcf03fd7d35401ce639 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
title: Crypto
slug: Web/API/Crypto
tags:
  - 加密
translation_of: Web/API/Crypto
---
<p>{{APIRef("Web Crypto API")}}</p>

<p><code><strong>Crypto</strong></code> 接口提供了基本的加密功能,可用于当前的上下文中。它允许访问一个密码强度的随机数生成器和 cryptographic primitives。</p>

<p>该接口在 Web 中可以通过 {{domxref("Window.crypto")}} 属性来访问。</p>

<h2 id="属性">属性</h2>

<p><em>该接口实现的属性定义在 {{domxref("RandomSource")}} 中。</em></p>

<dl>
 <dt>{{domxref("Crypto.subtle")}} {{experimental_inline}}{{readOnlyInline}}</dt>
 <dd>返回一个 {{domxref("SubtleCrypto")}} 对象, 用来访问公共的 cryptographic primitives,例如哈希、签名、加密以及解密。</dd>
</dl>

<h2 id="方法">方法</h2>

<p><em>该接口实现的方法定义在 {{domxref("RandomSource")}} 中。</em></p>

<dl>
 <dt>{{ domxref("RandomSource.getRandomValues()") }}</dt>
 <dd>使用 cryptographically sound 随机数填充 {{ jsxref("TypedArray") }}</dd>
</dl>

<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", "#crypto-interface", "Crypto")}}</td>
   <td>{{Spec2("Web Crypto API")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>



<p>{{Compat("api.Crypto")}}</p>

<h2 id="参见">参见</h2>

<ul>
 <li><a href="/en-US/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li>
</ul>