chore: bump dependencies (#11356)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Almeida
2025-12-10 17:53:48 +00:00
committed by GitHub
parent 9bf1f739e0
commit 01f31f374a
32 changed files with 890 additions and 646 deletions

View File

@@ -76,7 +76,7 @@ const libs = {
return crypto.seal(nonce, cipherText, additionalData);
},
}),
'@noble/ciphers/chacha': (noble: any): Methods => ({
'@noble/ciphers/chacha.js': (noble: any): Methods => ({
crypto_aead_xchacha20poly1305_ietf_decrypt(cipherText, additionalData, nonce, key) {
const chacha = noble.xchacha20poly1305(key, nonce, additionalData);
return chacha.decrypt(cipherText);