From 5d135156f12ec7484d071a1fd29fda24b0e35859 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Fri, 22 Nov 2024 17:49:23 +0000 Subject: [PATCH] build: use non-micro --- build/input.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/input.js b/build/input.js index f6aa40e..75f1fb0 100644 --- a/build/input.js +++ b/build/input.js @@ -1,7 +1,7 @@ +export { xsalsa20poly1305, salsa20 } from '@noble/ciphers/salsa'; export { - xsalsa20poly1305, chacha20poly1305, xchacha20poly1305, - salsa20, chacha20, chacha8, chacha12, -} from '@noble/ciphers/_micro'; + chacha20poly1305, xchacha20poly1305, chacha20, chacha8, chacha12, +} from '@noble/ciphers/chacha'; export { ecb, ctr, cbc, gcm, siv, aeskw, aeskwp } from '@noble/ciphers/aes'; import { randomBytes } from '@noble/ciphers/webcrypto'; import { bytesToHex, bytesToUtf8, hexToBytes, utf8ToBytes } from '@noble/ciphers/utils';