2020-07-19 13:49:44 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
((window) => {
|
2020-09-16 16:22:43 -04:00
|
|
|
const core = window.Deno.core;
|
2020-07-19 13:49:44 -04:00
|
|
|
const { assert } = window.__bootstrap.util;
|
|
|
|
|
|
|
|
function getRandomValues(typedArray) {
|
|
|
|
assert(typedArray !== null, "Input must not be null");
|
|
|
|
assert(typedArray.length <= 65536, "Input must not be longer than 65536");
|
|
|
|
const ui8 = new Uint8Array(
|
|
|
|
typedArray.buffer,
|
|
|
|
typedArray.byteOffset,
|
|
|
|
typedArray.byteLength,
|
|
|
|
);
|
2020-09-16 16:22:43 -04:00
|
|
|
core.jsonOpSync("op_get_random_values", {}, ui8);
|
2020-07-19 13:49:44 -04:00
|
|
|
return typedArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.__bootstrap.crypto = {
|
|
|
|
getRandomValues,
|
|
|
|
};
|
|
|
|
})(this);
|