summaryrefslogtreecommitdiff
path: root/ext/node/lib.rs
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-04-06 22:26:56 +0530
committerGitHub <noreply@github.com>2023-04-06 16:56:56 +0000
commitdf72420d723affb780c0c388b7d704985288f801 (patch)
tree6e6da7d1a93930c6742c98c838eeae55678e144e /ext/node/lib.rs
parent2d0a9ffbccf9d8a4773eb6efa48ddc6978af6455 (diff)
fix(ext/node): implement hkdf-expand (#18612)
Towards https://github.com/denoland/deno/issues/18455
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r--ext/node/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs
index 478efaf27..bf947f5e8 100644
--- a/ext/node/lib.rs
+++ b/ext/node/lib.rs
@@ -189,6 +189,8 @@ deno_core::extension!(deno_node,
crypto::op_node_check_prime_bytes_async,
crypto::op_node_pbkdf2,
crypto::op_node_pbkdf2_async,
+ crypto::op_node_hkdf,
+ crypto::op_node_hkdf_async,
crypto::op_node_generate_secret,
crypto::op_node_generate_secret_async,
crypto::op_node_sign,