diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-04-07 22:54:16 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 22:54:16 +0530 |
commit | a0dd0cbcb99ae0e78aeb8493cf7d43b01e0faf55 (patch) | |
tree | 2baf48c837ee145798d53f731c4dbaa6fc883ab3 /ext/node/lib.rs | |
parent | 5d9172467eee8cdceefa944199459ddd410f7388 (diff) |
fix(ext/node): add X509Certificate (#18625)
Towards #18455
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index bf947f5e8..3ef761cb7 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -194,6 +194,18 @@ deno_core::extension!(deno_node, crypto::op_node_generate_secret, crypto::op_node_generate_secret_async, crypto::op_node_sign, + crypto::x509::op_node_x509_parse, + crypto::x509::op_node_x509_ca, + crypto::x509::op_node_x509_check_email, + crypto::x509::op_node_x509_fingerprint, + crypto::x509::op_node_x509_fingerprint256, + crypto::x509::op_node_x509_fingerprint512, + crypto::x509::op_node_x509_get_issuer, + crypto::x509::op_node_x509_get_subject, + crypto::x509::op_node_x509_get_valid_from, + crypto::x509::op_node_x509_get_valid_to, + crypto::x509::op_node_x509_get_serial_number, + crypto::x509::op_node_x509_key_usage, winerror::op_node_sys_to_uv_error, v8::op_v8_cached_data_version_tag, v8::op_v8_get_heap_statistics, |