Skip to content

Commit

Permalink
Set webcrypto only if crypto instance is not available (#1338)
Browse files Browse the repository at this point in the history
* set webcrypto only if not available

* update package-lock.json

* add changelog
  • Loading branch information
dark64 authored Sep 12, 2023
1 parent 89cc999 commit f02e15d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelogs/unreleased/1338-dark64
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Set webcrypto only if crypto instance is not available (nodejs)
4 changes: 3 additions & 1 deletion zokrates_js/index-node.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// https://docs.rs/getrandom/0.2.8/getrandom/index.html#nodejs-es-module-support
import { webcrypto } from "node:crypto";
globalThis.crypto = webcrypto;
if (typeof globalThis.crypto === "undefined") {
globalThis.crypto = webcrypto;
}

export * from "./index.js";
4 changes: 2 additions & 2 deletions zokrates_js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f02e15d

Please sign in to comment.