mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
Add crypto.getRandomValues() (#2327)
This commit is contained in:
parent
7f6549532c
commit
00f6fa46b3
9 changed files with 128 additions and 1 deletions
51
js/get_random_values_test.ts
Normal file
51
js/get_random_values_test.ts
Normal file
|
@ -0,0 +1,51 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { test, assertNotEquals, assertStrictEq } from "./test_util.ts";
|
||||
|
||||
test(function getRandomValuesInt8Array(): void {
|
||||
const arr = new Int8Array(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int8Array(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint8Array(): void {
|
||||
const arr = new Uint8Array(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint8Array(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint8ClampedArray(): void {
|
||||
const arr = new Uint8ClampedArray(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint8ClampedArray(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesInt16Array(): void {
|
||||
const arr = new Int16Array(4);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int16Array(4));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint16Array(): void {
|
||||
const arr = new Uint16Array(4);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint16Array(4));
|
||||
});
|
||||
|
||||
test(function getRandomValuesInt32Array(): void {
|
||||
const arr = new Int32Array(8);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int32Array(8));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint32Array(): void {
|
||||
const arr = new Uint32Array(8);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint32Array(8));
|
||||
});
|
||||
|
||||
test(function getRandomValuesReturnValue(): void {
|
||||
const arr = new Uint32Array(8);
|
||||
const rtn = crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint32Array(8));
|
||||
assertStrictEq(rtn, arr);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue