summaryrefslogtreecommitdiff
path: root/ext/node/crypto/mod.rs
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-04-07 22:54:16 +0530
committerGitHub <noreply@github.com>2023-04-07 22:54:16 +0530
commita0dd0cbcb99ae0e78aeb8493cf7d43b01e0faf55 (patch)
tree2baf48c837ee145798d53f731c4dbaa6fc883ab3 /ext/node/crypto/mod.rs
parent5d9172467eee8cdceefa944199459ddd410f7388 (diff)
fix(ext/node): add X509Certificate (#18625)
Towards #18455
Diffstat (limited to 'ext/node/crypto/mod.rs')
-rw-r--r--ext/node/crypto/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/crypto/mod.rs b/ext/node/crypto/mod.rs
index adacdf6d6..55a7a5870 100644
--- a/ext/node/crypto/mod.rs
+++ b/ext/node/crypto/mod.rs
@@ -23,6 +23,7 @@ use rsa::RsaPublicKey;
mod cipher;
mod digest;
mod primes;
+pub mod x509;
#[op]
pub fn op_node_check_prime(num: serde_v8::BigInt, checks: usize) -> bool {