diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2021-10-08 20:59:36 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-08 17:29:36 +0200 |
| commit | a5d3c8b06cba652b902fdfaa3f13ed40483e90c0 (patch) | |
| tree | 967413a9cdab742cbc7a500006859ac938b79d53 /ext/crypto/Cargo.toml | |
| parent | c49a057599d68b27c88cc123a9fcd6703b49310c (diff) | |
feat(ext/crypto): implement deriveBits for ECDH (p256) (#11873)
Diffstat (limited to 'ext/crypto/Cargo.toml')
| -rw-r--r-- | ext/crypto/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index d04f8dc33..060845b70 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -18,6 +18,8 @@ deno_core = { version = "0.102.0", path = "../../core" } deno_web = { version = "0.51.0", path = "../web" } lazy_static = "1.4.0" num-traits = "0.2.14" +p256 = { version = "0.9.0", features = ["ecdh"] } +p384 = "0.8.0" rand = "0.8.4" ring = { version = "0.16.20", features = ["std"] } rsa = { version = "0.5.0", default-features = false, features = ["std"] } |
