mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
2aed322dd5
This commit rewrites most of the ops to use "serde_v8" instead of "json" serialization.
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
"use strict";
|
|
|
|
((window) => {
|
|
const core = window.Deno.core;
|
|
|
|
function getRandomValues(arrayBufferView) {
|
|
if (!ArrayBuffer.isView(arrayBufferView)) {
|
|
throw new TypeError(
|
|
"Argument 1 does not implement interface ArrayBufferView",
|
|
);
|
|
}
|
|
if (
|
|
!(
|
|
arrayBufferView instanceof Int8Array ||
|
|
arrayBufferView instanceof Uint8Array ||
|
|
arrayBufferView instanceof Int16Array ||
|
|
arrayBufferView instanceof Uint16Array ||
|
|
arrayBufferView instanceof Int32Array ||
|
|
arrayBufferView instanceof Uint32Array ||
|
|
arrayBufferView instanceof Uint8ClampedArray
|
|
)
|
|
) {
|
|
throw new DOMException(
|
|
"The provided ArrayBufferView is not an integer array type",
|
|
"TypeMismatchError",
|
|
);
|
|
}
|
|
if (arrayBufferView.byteLength > 65536) {
|
|
throw new DOMException(
|
|
`The ArrayBufferView's byte length (${arrayBufferView.byteLength}) exceeds the number of bytes of entropy available via this API (65536)`,
|
|
"QuotaExceededError",
|
|
);
|
|
}
|
|
const ui8 = new Uint8Array(
|
|
arrayBufferView.buffer,
|
|
arrayBufferView.byteOffset,
|
|
arrayBufferView.byteLength,
|
|
);
|
|
core.jsonOpSync("op_crypto_get_random_values", null, ui8);
|
|
return arrayBufferView;
|
|
}
|
|
|
|
window.crypto = {
|
|
getRandomValues,
|
|
};
|
|
window.__bootstrap = window.__bootstrap || {};
|
|
window.__bootstrap.crypto = {
|
|
getRandomValues,
|
|
};
|
|
})(this);
|