diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-03-28 15:10:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 09:40:56 +0000 |
commit | 67e21e71ce6a9c7d0f261219609de61f6dd0c7a3 (patch) | |
tree | 71b13be42527cd9e785322ebfb32de58031674a3 /ext/node/lib.rs | |
parent | d0a0ff680eb02dddb7cea06fa0e26ecd08eab00a (diff) |
chore(ext/node): port pbkdf2 to Rust (#18470)
Towards #18455
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index ba2ce6884..79ab9ed23 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -113,6 +113,8 @@ deno_core::extension!(deno_node, crypto::op_node_private_encrypt, crypto::op_node_private_decrypt, crypto::op_node_public_encrypt, + crypto::op_node_pbkdf2, + crypto::op_node_pbkdf2_async, winerror::op_node_sys_to_uv_error, v8::op_v8_cached_data_version_tag, v8::op_v8_get_heap_statistics, |