diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-08-08 06:04:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 18:34:10 +0530 |
commit | 0d1beed2e3633d71d5e288e0382b85be361ec13d (patch) | |
tree | ed02258b19695bff1ab3ccaeafd78786406bb832 /ext/node/lib.rs | |
parent | 2f6da40bd609ebda8f30d748427d325d80e58274 (diff) |
fix(ext/node): add `CipherIv.setAutoPadding()` (#24940)
Co-Authored-By: Luca Casonato <hello@lcas.dev>
Fixes https://github.com/denoland/deno/issues/21804
Ref https://github.com/denoland/deno/issues/20924
---------
Signed-off-by: Divy Srivastava <dj.srivastava23@gmail.com>
Co-authored-by: Luca Casonato <hello@lcas.dev>
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 51b22cefb..2005e4c31 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -232,6 +232,7 @@ deno_core::extension!(deno_node, ops::crypto::op_node_decipheriv_decrypt, ops::crypto::op_node_decipheriv_final, ops::crypto::op_node_decipheriv_set_aad, + ops::crypto::op_node_decipheriv_take, ops::crypto::op_node_dh_compute_secret, ops::crypto::op_node_diffie_hellman, ops::crypto::op_node_ecdh_compute_public_key, |