diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-03-28 21:46:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 21:46:48 +0900 |
commit | 4358ab2d848cc6ba363f42e5f5b5b898b656db05 (patch) | |
tree | d4dc7dc75cbed3fdb794b508450cc6903d120c8f /ext/node/lib.rs | |
parent | e5b2815b3943cd39038bba00da462082c6988e6e (diff) |
fix(ext/node): implement crypto.Sign (RSA/PEM/SHA{224,256,384,512}) (#18471)
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index b83a86a5b..0507f4a88 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -119,6 +119,7 @@ deno_core::extension!(deno_node, crypto::op_node_check_prime_bytes_async, crypto::op_node_pbkdf2, crypto::op_node_pbkdf2_async, + crypto::op_node_sign, winerror::op_node_sys_to_uv_error, v8::op_v8_cached_data_version_tag, v8::op_v8_get_heap_statistics, @@ -406,7 +407,7 @@ pub fn initialize_runtime( let source_code = format!( r#"(function loadBuiltinNodeModules(nodeGlobalThisName, usesLocalNodeModulesDir, argv0) {{ Deno[Deno.internal].node.initialize( - nodeGlobalThisName, + nodeGlobalThisName, usesLocalNodeModulesDir, argv0 ); |