summaryrefslogtreecommitdiff
path: root/ext/node/lib.rs
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-03-13 19:17:23 +1100
committerGitHub <noreply@github.com>2024-03-13 08:17:23 +0000
commit5cfa03ceca396b1c21a826cb44a984329cf35078 (patch)
treeb1fae2dafbb53aeff0a3b973c39d6a6bbe03415c /ext/node/lib.rs
parent6e6c316c9d3950cd23cb28af41b0525695438c3c (diff)
fix(ext/node): initial `crypto.createPublicKey()` support (#22509)
Closes #21807 Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r--ext/node/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs
index f9553a038..f8c9dfc88 100644
--- a/ext/node/lib.rs
+++ b/ext/node/lib.rs
@@ -329,6 +329,7 @@ deno_core::extension!(deno_node,
ops::require::op_require_break_on_next_statement,
ops::util::op_node_guess_handle_type,
ops::crypto::op_node_create_private_key,
+ ops::crypto::op_node_create_public_key,
ops::ipc::op_node_child_ipc_pipe,
ops::ipc::op_node_ipc_write,
ops::ipc::op_node_ipc_read,