diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-03-18 21:51:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-18 21:51:28 +0900 |
commit | 5223f3d9b68921179db8cd6b00babd711d4f06ff (patch) | |
tree | bd0167da2bb488e31f79ee51dbcd0e67bcb527a7 /ext/node/lib.rs | |
parent | 44553aa09ec2de5a59db17433fd601a9dc7bd624 (diff) |
fix(ext/node): add createDecipheriv (#18245)
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 23a003bc8..d2d6b15c9 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -96,10 +96,13 @@ fn op_node_build_os() -> String { deno_core::extension!(deno_node, deps = [ deno_io, deno_fs ], ops = [ + crypto::op_node_create_decipheriv, crypto::op_node_cipheriv_encrypt, crypto::op_node_cipheriv_final, crypto::op_node_create_cipheriv, crypto::op_node_create_hash, + crypto::op_node_decipheriv_decrypt, + crypto::op_node_decipheriv_final, crypto::op_node_hash_update, crypto::op_node_hash_update_str, crypto::op_node_hash_digest, |