summaryrefslogtreecommitdiff
path: root/ext/node/lib.rs
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-03-14 15:59:23 +0900
committerGitHub <noreply@github.com>2023-03-14 15:59:23 +0900
commite80cc17dc43c26fe9dd1d1fb0dce80fc049cfffd (patch)
treec58f6679ede5df0e7d83e79e8c4bc7ee5e82c749 /ext/node/lib.rs
parent9aa20b3ba758765863a4c1055097fda399efcfc3 (diff)
fix(ext/node): add crypto.createCipheriv (#18091)
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r--ext/node/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs
index 1c9d9e0aa..318667d59 100644
--- a/ext/node/lib.rs
+++ b/ext/node/lib.rs
@@ -102,6 +102,9 @@ fn ext_polyfill() -> ExtensionBuilder {
fn ops_polyfill(ext: &mut ExtensionBuilder) -> &mut ExtensionBuilder {
ext.ops(vec![
+ crypto::op_node_cipheriv_encrypt::decl(),
+ crypto::op_node_cipheriv_final::decl(),
+ crypto::op_node_create_cipheriv::decl(),
crypto::op_node_create_hash::decl(),
crypto::op_node_hash_update::decl(),
crypto::op_node_hash_update_str::decl(),