mirror of
https://github.com/denoland/deno.git
synced 2024-12-25 16:49:18 -05:00
fix(ext/node): fix webcrypto export (#17838)
This commit is contained in:
parent
4c6db7aa14
commit
860b6cbd23
2 changed files with 2 additions and 2 deletions
|
@ -749,7 +749,7 @@
|
||||||
"TODO:test-util-types.js",
|
"TODO:test-util-types.js",
|
||||||
"test-util.js",
|
"test-util.js",
|
||||||
"test-vm-static-this.js",
|
"test-vm-static-this.js",
|
||||||
"TODO:test-webcrypto-sign-verify.js",
|
"test-webcrypto-sign-verify.js",
|
||||||
"test-whatwg-encoding-custom-api-basics.js",
|
"test-whatwg-encoding-custom-api-basics.js",
|
||||||
"test-whatwg-encoding-custom-fatal-streaming.js",
|
"test-whatwg-encoding-custom-fatal-streaming.js",
|
||||||
"test-whatwg-encoding-custom-textdecoder-fatal.js",
|
"test-whatwg-encoding-custom-textdecoder-fatal.js",
|
||||||
|
|
|
@ -166,8 +166,8 @@ import type {
|
||||||
TransformOptions,
|
TransformOptions,
|
||||||
WritableOptions,
|
WritableOptions,
|
||||||
} from "internal:deno_node/polyfills/_stream.d.ts";
|
} from "internal:deno_node/polyfills/_stream.d.ts";
|
||||||
|
import { crypto as webcrypto } from "internal:deno_crypto/00_crypto.js";
|
||||||
|
|
||||||
const webcrypto = globalThis.crypto;
|
|
||||||
const fipsForced = getOptionValue("--force-fips");
|
const fipsForced = getOptionValue("--force-fips");
|
||||||
|
|
||||||
function createCipheriv(
|
function createCipheriv(
|
||||||
|
|
Loading…
Reference in a new issue