You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I digged the code, it looks like the auto_pad variable defaults to false when encrypting but to true when decrypting. This behaviour is inconsistent with node.
By the way, there's also a related problem. Deno does not support indirect export:
When there is a package A with exports deno condition, if we import A directly with deno, deno export works. If we import package B using package A, deno export will not work
That's to say, even if we specify @noble/ciphers in @ecies/ciphers for chacha20-poly1305, it dependents still fall back to node:crypto, which makes it unusable.
Version: Deno 2.2.2
The following error occurs when decrypting with aes-256-cbc
I digged the code, it looks like the
auto_pad
variable defaults to false when encrypting but to true when decrypting. This behaviour is inconsistent with node.The text was updated successfully, but these errors were encountered: