WIP: Replace OpenSSL with custom implementations

This commit is contained in:
Alex Page 2023-06-28 00:47:48 -04:00
parent 8dc063e4e5
commit c2995d9399
9 changed files with 653 additions and 172 deletions

View file

@ -6,7 +6,13 @@ edition = "2021"
[dependencies]
anyhow = "1.0.71"
bitreader = "0.3.7"
elliptic-curve = "0.13.5"
num-bigint = { version = "0.4.3", features = ["rand"] }
num-integer = "0.1.45"
num-traits = "0.2.15"
openssl = { git = "https://github.com/sfackler/rust-openssl" }
rand = "0.8.5"
sha1 = "0.10.5"
thiserror = "1.0.40"
[dev-dependencies]