Skip to content

Commit 0f4e6c0

Browse files
authored
ssh-key: use release versions of dsa and rsa (#435)
Updates them to the following: - `dsa` v0.7.0-rc.8 - `rsa` v0.10.0-rc.11
1 parent 8ef980b commit 0f4e6c0

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed

Cargo.lock

Lines changed: 15 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,3 @@ ssh-cipher = { path = "./ssh-cipher" }
1616
ssh-derive = { path = "./ssh-derive" }
1717
ssh-encoding = { path = "./ssh-encoding" }
1818
ssh-key = { path = "./ssh-key" }
19-
20-
crypto-primes = { git = "https://github.com/tarcieri/crypto-primes", branch = "crypto-bigint/v0.7.0-rc.13" }
21-
curve25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek" }
22-
dsa = { git = "https://github.com/RustCrypto/signatures" }
23-
ed25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek" }
24-
rsa = { git = "https://github.com/RustCrypto/RSA" }

ssh-key/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ zeroize = { version = "1", default-features = false }
2828
# optional dependencies
2929
argon2 = { version = "0.6.0-rc.5", optional = true, default-features = false, features = ["alloc"] }
3030
bcrypt-pbkdf = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["alloc"] }
31-
dsa = { version = "0.7.0-rc.7", optional = true, default-features = false, features = ["hazmat"] }
31+
dsa = { version = "0.7.0-rc.8", optional = true, default-features = false, features = ["hazmat"] }
3232
ed25519-dalek = { version = "=3.0.0-pre.4", optional = true, default-features = false }
3333
hex = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
3434
hmac = { version = "0.13.0-rc.3", optional = true }
3535
p256 = { version = "0.14.0-rc.2", optional = true, default-features = false, features = ["ecdsa"] }
3636
p384 = { version = "0.14.0-rc.2", optional = true, default-features = false, features = ["ecdsa"] }
3737
p521 = { version = "0.14.0-rc.2", optional = true, default-features = false, features = ["ecdsa"] }
3838
rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false }
39-
rsa = { version = "0.10.0-rc.10", optional = true, default-features = false, features = ["sha2"] }
39+
rsa = { version = "0.10.0-rc.11", optional = true, default-features = false, features = ["sha2"] }
4040
sec1 = { version = "0.8.0-rc.10", optional = true, default-features = false, features = ["point"] }
4141
serde = { version = "1.0.16", optional = true }
4242
sha1 = { version = "0.11.0-rc.3", optional = true, default-features = false, features = ["oid"] }

0 commit comments

Comments
 (0)