From d5661f677e9f5675fc488c4629e85a58764ec3ff Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Sat, 14 Nov 2020 02:31:57 +0530 Subject: refactor: deno_crypto op crate (#7956) This commit factors out "deno_crypto" op crate. "rand" crate dependency was consequently moved to "deno_crypto" crate and reexported. --- cli/rt/11_crypto.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 cli/rt/11_crypto.js (limited to 'cli/rt') diff --git a/cli/rt/11_crypto.js b/cli/rt/11_crypto.js deleted file mode 100644 index 32b026a78..000000000 --- a/cli/rt/11_crypto.js +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -((window) => { - const core = window.Deno.core; - 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, - ); - core.jsonOpSync("op_get_random_values", {}, ui8); - return typedArray; - } - - window.__bootstrap.crypto = { - getRandomValues, - }; -})(this); -- cgit v1.2.3