From d771ec03b144e5131cf5a9944874ecfc54198183 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Fri, 16 Feb 2024 22:24:48 +0100 Subject: [PATCH] Fix build import --- build/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/input.js b/build/input.js index c5ea152..2632aa6 100644 --- a/build/input.js +++ b/build/input.js @@ -3,6 +3,6 @@ export { salsa20, chacha20, chacha8, chacha12, } from '@noble/ciphers/_micro'; export { ecb, ctr, cbc, gcm, siv } from '@noble/ciphers/aes'; -import { randomBytes } from '@noble/ciphers/webcrypto/utils'; +import { randomBytes } from '@noble/ciphers/webcrypto'; import { bytesToHex, bytesToUtf8, hexToBytes, utf8ToBytes } from '@noble/ciphers/utils'; export const utils = { bytesToHex, bytesToUtf8, hexToBytes, randomBytes, utf8ToBytes };