1
0
Fork 0
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:
Yoshiya Hinosawa 2023-02-22 12:40:36 +09:00 committed by GitHub
parent 4c6db7aa14
commit 860b6cbd23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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(