summaryrefslogtreecommitdiff
path: root/op_crates/crypto/01_crypto.js
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2020-11-14 02:31:57 +0530
committerGitHub <noreply@github.com>2020-11-13 22:01:57 +0100
commitd5661f677e9f5675fc488c4629e85a58764ec3ff (patch)
tree6878ec81e2da2d41d93e3f429a189edcd4202539 /op_crates/crypto/01_crypto.js
parent2c8439bc1e8118225c8ba4d64658c1c6b2182937 (diff)
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.
Diffstat (limited to 'op_crates/crypto/01_crypto.js')
-rw-r--r--op_crates/crypto/01_crypto.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/op_crates/crypto/01_crypto.js b/op_crates/crypto/01_crypto.js
new file mode 100644
index 000000000..2f9424492
--- /dev/null
+++ b/op_crates/crypto/01_crypto.js
@@ -0,0 +1,25 @@
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+
+((window) => {
+ const core = window.Deno.core;
+ function getRandomValues(typedArray) {
+ if (typedArray == null) throw new Error("Input must not be null");
+ if (typedArray.length > 65536) {
+ throw new Error("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.crypto = {
+ getRandomValues,
+ };
+ window.__bootstrap = window.__bootstrap || {};
+ window.__bootstrap.crypto = {
+ getRandomValues,
+ };
+})(this);