Skip to content

Commit

Permalink
feat(ecdh)!: implement support for nist p curves
Browse files Browse the repository at this point in the history
  • Loading branch information
hko-s committed May 13, 2024
1 parent b5ad8f6 commit 8249611
Show file tree
Hide file tree
Showing 4 changed files with 365 additions and 127 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ md-5 = { version = "^0.10.5", features = ["oid"] }
nom = "^7.0"
num_enum = "0.7"
num-traits = "0.2.6"
p256 = { version = "^0.13", features = ["ecdsa"] }
p256 = { version = "^0.13", features = ["ecdsa", "ecdh"] }
p384 = { version = "^0.13", features = ["ecdsa"] }
p521 = { version = "^0.13", features = ["ecdsa"] }
p521 = { version = "^0.13", features = ["ecdsa", "ecdh"] }
k256 = { version = "0.13", features = ["ecdsa"] }
rand = "0.8"
ripemd = { version = "^0.1.3", features = ["oid"] }
Expand Down
Loading

0 comments on commit 8249611

Please sign in to comment.