Implement RSA key precomputation

This commit is contained in:
BlackHoleFox
2020-06-08 21:48:25 -05:00
parent acc96e988f
commit 0f907ebd5c
3 changed files with 66 additions and 14 deletions
+4 -1
View File
@@ -31,7 +31,10 @@ getrandom = "0.1"
hmac = "0.7"
log = "0.4"
nom = "5"
num-bigint = { version = "0.2", features = ["rand"] }
num-bigint_rsa = { version = "0.6", features = ["rand"], package = "num-bigint-dig" }
num-bigint = { version = "0.2", features = ["rand"] }
num-traits = "0.2"
num-integer = "0.1"
pbkdf2 = "0.3"
p256 = "0.2"
p384 = "0.1"