Update import paths in preparation for noble-hashes v2

This commit is contained in:
Héctor Molinero Fernández
2025-08-12 18:27:16 +02:00
parent 95ed8b7d39
commit a5eeef43ff
+4 -4
View File
@@ -1,8 +1,8 @@
import * as crypto from "node:crypto";
import { hmac } from "@noble/hashes/hmac";
import { sha1 } from "@noble/hashes/sha1";
import { sha224, sha256, sha384, sha512 } from "@noble/hashes/sha2";
import { sha3_224, sha3_256, sha3_384, sha3_512 } from "@noble/hashes/sha3";
import { hmac } from "@noble/hashes/hmac.js";
import { sha1 } from "@noble/hashes/legacy.js";
import { sha224, sha256, sha384, sha512 } from "@noble/hashes/sha2.js";
import { sha3_224, sha3_256, sha3_384, sha3_512 } from "@noble/hashes/sha3.js";
import { globalScope } from "../global-scope.js";
/**