diff options
Diffstat (limited to 'files/zh-cn/web/api/crypto/getrandomvalues/index.html')
-rw-r--r-- | files/zh-cn/web/api/crypto/getrandomvalues/index.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/crypto/getrandomvalues/index.html b/files/zh-cn/web/api/crypto/getrandomvalues/index.html new file mode 100644 index 0000000000..5df5fb0a83 --- /dev/null +++ b/files/zh-cn/web/api/crypto/getrandomvalues/index.html @@ -0,0 +1,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> |