blob: 5df5fb0a830ddfae780901bf65a8551a08177efa (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
---
title: Crypto.getRandomValues()
slug: Web/API/RandomSource/getRandomValues
tags:
- API
- 加密
- 参考
- 安全
- 密码学
- 方法
translation_of: Web/API/Crypto/getRandomValues
---
<p>{{APIRef("Web Crypto API")}}</p>
<p><code><strong>Crypto.getRandomValues()</strong></code> 方法让你可以获取符合密码学要求的安全的随机值。传入参数的数组被随机值填充(在加密意义上的随机)。</p>
<p>为了确保足够的性能,不使用真正的随机数生成器,但是它们正在使用具有足够熵值伪随机数生成器。它所使用的 PRNG 的实现与其他不同,但适用于加密的用途。该实现还需要使用具有足够熵的种子,如系统级熵源。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox"><em>cryptoObj</em>.getRandomValues(<em>typedArray</em>);</pre>
<h3 id="参数">参数</h3>
<dl>
<dt><code>typedArray</code></dt>
<dd>是一个基于整数的 {{jsxref("TypedArray")}},它可以是 {{jsxref("Int8Array")}}、{{jsxref("Uint8Array")}}、{{jsxref("Int16Array")}}、 {{jsxref("Uint16Array")}}、 {{jsxref("Int32Array")}} 或者 {{jsxref("Uint32Array")}}。在数组中的所有的元素会被随机数重写。(注释:生成的随机数储存在 <code>typedArray</code> 数组上。)</dd>
</dl>
<h3 id="异常事件">异常事件</h3>
<ul>
<li>如果请求的长度超过 65536 字节,则异常事件 {{domxref("DOMException")}} {{exception("QuotaExceededError")}} 被抛出。</li>
</ul>
<h2 id="例子">例子</h2>
<pre class="brush: js">/* 假设 window.crypto.getRandomValues 可用 */
var array = new Uint32Array(10);
window.crypto.getRandomValues(array);
console.log("Your lucky numbers:");
for (var i = 0; i < array.length; i++) {
console.log(array[i]);
}
</pre>
<h2 id="标准">标准</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
<tr>
<td>{{SpecName('Web Crypto API', '#RandomSource-method-getRandomValues')}}</td>
<td>{{Spec2('Web Crypto API')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Crypto.getRandomValues")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>通过 {{ domxref("Window.crypto") }} 获取 {{domxref("Crypto")}} 对象。</li>
<li>{{jsxref("Math.random")}},一个非密码学安全的随机数来源。</li>
</ul>
|