Skip to content

Commit d3a4a55

Browse files
committed
Bump to signature 3
1 parent 90b6617 commit d3a4a55

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

Cargo.lock

+14-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ x509-ocsp = { path = "./x509-ocsp" }
6565

6666
# https://github.com/RustCrypto/signatures/pull/913
6767
# https://github.com/RustCrypto/signatures/pull/923
68-
ecdsa = { git = "https://github.com/RustCrypto/signatures.git" }
68+
ecdsa = { git = "https://github.com/baloo/signatures.git", branch = "baloo/crypto-bigint/0.7.0-pre.2" }
6969
rfc6979 = { git = "https://github.com/RustCrypto/signatures.git" }
7070
# https://github.com/RustCrypto/key-wraps/pull/34
7171
# https://github.com/RustCrypto/key-wraps/pull/35
@@ -85,14 +85,13 @@ aead = { git = "https://github.com/RustCrypto/traits.git" }
8585

8686
# https://github.com/RustCrypto/RSA/pull/478
8787
# https://github.com/RustCrypto/RSA/pull/504
88-
rsa = { git = "https://github.com/RustCrypto/RSA.git" }
88+
rsa = { git = "https://github.com/baloo/RSA.git", branch = "baloo/signature3-cryptobigint" }
8989

9090
# https://github.com/RustCrypto/password-hashes/pull/577
9191
# https://github.com/RustCrypto/password-hashes/pull/578
9292
pbkdf2 = { git = "https://github.com/RustCrypto/password-hashes.git" }
9393
scrypt = { git = "https://github.com/RustCrypto/password-hashes.git" }
9494

95-
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }
9695
crypto-primes = { git = "https://github.com/entropyxyz/crypto-primes.git" }
9796

9897
# https://github.com/RustCrypto/elliptic-curves/pull/1125

cms/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ rsa = { version = "=0.10.0-pre.4", optional = true }
3232
sha1 = { version = "=0.11.0-pre.5", optional = true }
3333
sha2 = { version = "=0.11.0-pre.5", optional = true }
3434
sha3 = { version = "=0.11.0-pre.5", optional = true }
35-
signature = { version = "=2.3.0-pre.6", features = ["digest", "alloc"], optional = true }
35+
signature = { version = "=3.0.0-pre", features = ["digest", "alloc"], optional = true }
3636
zeroize = { version = "1.8.1", optional = true }
3737

3838
[dev-dependencies]
@@ -45,7 +45,7 @@ pbkdf2 = "0.13.0-pre.0"
4545
rand = "0.9"
4646
rsa = { version = "=0.10.0-pre.4", features = ["sha2"] }
4747
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
48-
p256 = "=0.14.0-pre.2"
48+
p256 = { version = "=0.14.0-pre.2", features = ["digest"] }
4949
tokio = { version = "1.43.1", features = ["macros", "rt"] }
5050
x509-cert = { version = "=0.3.0-pre.0", features = ["pem"] }
5151

x509-cert/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ spki = { version = "0.8.0-rc.0", features = ["alloc"] }
2424
arbitrary = { version = "1.4", features = ["derive"], optional = true }
2525
digest = { version = "0.11.0-pre.10", optional = true, default-features = false }
2626
sha1 = { version = "0.11.0-pre.5", default-features = false, optional = true }
27-
signature = { version = "=2.3.0-pre.6", features = ["rand_core"], optional = true }
27+
signature = { version = "=3.0.0-pre", features = ["rand_core"], optional = true }
2828
tls_codec = { version = "0.4.0", default-features = false, features = ["derive"], optional = true }
2929

3030
[dev-dependencies]
3131
hex-literal = "1"
3232
rand = "0.9"
3333
rsa = { version = "=0.10.0-pre.4", features = ["sha2"] }
3434
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
35-
p256 = "=0.14.0-pre.2"
35+
p256 = { version = "=0.14.0-pre.2" }
3636
rstest = "0.25"
3737
sha2 = { version = "=0.11.0-pre.5", features = ["oid"] }
3838
tempfile = "3.5.0"

x509-ocsp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ x509-cert = { version = "=0.3.0-pre.0", default-features = false }
2424
# Optional
2525
digest = { version = "=0.11.0-pre.10", optional = true, default-features = false, features = ["oid"] }
2626
rand_core = { version = "0.9", optional = true, default-features = false }
27-
signature = { version = "=2.3.0-pre.6", optional = true, default-features = false, features = ["digest", "rand_core"] }
27+
signature = { version = "=3.0.0-pre", optional = true, default-features = false, features = ["digest", "rand_core"] }
2828

2929
[dev-dependencies]
3030
hex-literal = "1"

0 commit comments

Comments
 (0)