diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-08-28 20:56:11 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 20:56:11 +0530 |
commit | 0e50bb1d4abd80da3fc1be17978760ddfa8560fa (patch) | |
tree | a05bb648a7c593c71fd28dcb88a10760212a5e20 /ext/node/lib.rs | |
parent | b9c144df6fdee9b5e89f6f7787463b366164d622 (diff) |
fix(ext/node): import RSA JWK keys (#25267)
Fixes https://github.com/denoland/deno/issues/24129
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index bf7db1475..3ec2d26bf 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -233,6 +233,7 @@ deno_core::extension!(deno_node, ops::crypto::op_node_verify_ed25519, ops::crypto::keys::op_node_create_private_key, ops::crypto::keys::op_node_create_ed_raw, + ops::crypto::keys::op_node_create_rsa_jwk, ops::crypto::keys::op_node_create_ec_jwk, ops::crypto::keys::op_node_create_public_key, ops::crypto::keys::op_node_create_secret_key, |