diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-03-14 06:53:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-14 14:53:50 +0100 |
| commit | b00f076017ca82e1f5f29de0a58dfaea8cdddeb2 (patch) | |
| tree | 35d9781e38a10766de006282e4c4a358c6b482b3 /ext/node/Cargo.toml | |
| parent | 9c348a0acd7d1bc288c2ce5b66016571b9603288 (diff) | |
fix(ext/node): Support private EC key signing (#22914)
Fixes https://github.com/denoland/deno/issues/18972
Support for web-push VAPID keys & jws signing
- Fixes EC keygen to return raw private key and uncompressed public key
point.
- Support for `EC PRIVATE KEY`
Diffstat (limited to 'ext/node/Cargo.toml')
| -rw-r--r-- | ext/node/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 8e3e695d6..8569a0491 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -63,6 +63,7 @@ ring.workspace = true ripemd = "0.1.3" rsa.workspace = true scrypt = "0.11.0" +sec1 = "0.7" serde = "1.0.149" sha-1 = "0.10.0" sha2.workspace = true |
