-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Cipheriv.setAutoPadding
#21804
Comments
Decipheriv.setAutoPadding
Cipheriv.setAutoPadding
This method is definitely not just used by crypto(currency) libraries. I've had a project that I needed to implement a specific decryption logic to work with a 3rd party and this method was needed, so I was forced to switch to nodejs. I couldn't find any other way to implement this in Deno either, the web subtle crypto api that Deno uses has no support for this. Please prioritize the issue! 🙏 |
Rough outline on how to implement this:
Similar logic can be applied for |
Co-Authored-By: Luca Casonato <[email protected]> Fixes #21804 Ref #20924 --------- Signed-off-by: Divy Srivastava <[email protected]> Co-authored-by: Luca Casonato <[email protected]>
#18455 (comment)
@mllnd stumbled upon missing method when using
npm:ethereum-cryptography
.https://github.com/ethereum/js-ethereum-cryptography/blob/cbb283febc4641bf1c5c365a2a16037032f2d23e/src/aes.ts#L69-L71
The text was updated successfully, but these errors were encountered: