-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into const-crypto-biguint
- Loading branch information
Showing
13 changed files
with
373 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsa" | ||
version = "0.9.5" | ||
version = "0.10.0-pre.1" | ||
authors = ["RustCrypto Developers", "dignifiedquire <[email protected]>"] | ||
edition = "2021" | ||
description = "Pure Rust RSA implementation" | ||
|
@@ -10,26 +10,26 @@ repository = "https://github.com/RustCrypto/RSA" | |
keywords = ["rsa", "encryption", "security", "crypto"] | ||
categories = ["cryptography"] | ||
readme = "README.md" | ||
rust-version = "1.65" | ||
rust-version = "1.72" | ||
|
||
[dependencies] | ||
num-bigint = { version = "0.8.2", features = ["i128", "prime", "zeroize"], default-features = false, package = "num-bigint-dig" } | ||
num-traits = { version= "0.2.9", default-features = false, features = ["libm"] } | ||
num-integer = { version = "0.1.39", default-features = false } | ||
rand_core = { version = "0.6.4", default-features = false } | ||
const-oid = { version = "0.9", default-features = false } | ||
const-oid = { version = "=0.10.0-pre.2", default-features = false } | ||
subtle = { version = "2.1.1", default-features = false } | ||
digest = { version = "0.10.5", default-features = false, features = ["alloc", "oid"] } | ||
pkcs1 = { version = "0.7.5", default-features = false, features = ["alloc", "pkcs8"] } | ||
pkcs8 = { version = "0.10.2", default-features = false, features = ["alloc"] } | ||
signature = { version = ">2.0, <2.3", default-features = false , features = ["alloc", "digest", "rand_core"] } | ||
spki = { version = "0.7.2", default-features = false, features = ["alloc"] } | ||
digest = { version = "=0.11.0-pre.8", default-features = false, features = ["alloc", "oid"] } | ||
pkcs1 = { version = "=0.8.0-pre.0", default-features = false, features = ["alloc", "pkcs8"] } | ||
pkcs8 = { version = "=0.11.0-pre.0", default-features = false, features = ["alloc"] } | ||
signature = { version = "=2.3.0-pre.3", default-features = false , features = ["alloc", "digest", "rand_core"] } | ||
spki = { version = "=0.8.0-pre.0", default-features = false, features = ["alloc"] } | ||
zeroize = { version = "1.5", features = ["alloc"] } | ||
crypto-bigint = { version = "0.6.0-pre.12", features = ["zeroize", "alloc"] } | ||
|
||
# optional dependencies | ||
sha1 = { version = "0.10.5", optional = true, default-features = false, features = ["oid"] } | ||
sha2 = { version = "0.10.6", optional = true, default-features = false, features = ["oid"] } | ||
sha1 = { version = "=0.11.0-pre.3", optional = true, default-features = false, features = ["oid"] } | ||
sha2 = { version = "=0.11.0-pre.3", optional = true, default-features = false, features = ["oid"] } | ||
serde = { version = "1.0.184", optional = true, default-features = false, features = ["derive"] } | ||
|
||
[dev-dependencies] | ||
|
@@ -41,9 +41,9 @@ rand_xorshift = "0.3" | |
rand_chacha = "0.3" | ||
rand = "0.8" | ||
rand_core = { version = "0.6", default-features = false } | ||
sha1 = { version = "0.10.5", default-features = false, features = ["oid"] } | ||
sha2 = { version = "0.10.6", default-features = false, features = ["oid"] } | ||
sha3 = { version = "0.10.7", default-features = false, features = ["oid"] } | ||
sha1 = { version = "=0.11.0-pre.3", default-features = false, features = ["oid"] } | ||
sha2 = { version = "=0.11.0-pre.3", default-features = false, features = ["oid"] } | ||
sha3 = { version = "=0.11.0-pre.3", default-features = false, features = ["oid"] } | ||
|
||
[[bench]] | ||
name = "key" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.