Skip to content

Commit 830370f

Browse files
committed
Bump cipher to v0.5.0-rc.1
1 parent 4e4da69 commit 830370f

File tree

10 files changed

+23
-28
lines changed

10 files changed

+23
-28
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 & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,13 @@ aes-gcm = { path = "aes-gcm" }
2121

2222
# https://github.com/RustCrypto/block-modes/pull/84
2323
belt-ctr = { git = "https://github.com/RustCrypto/block-modes" }
24-
# https://github.com/RustCrypto/utils/pull/1208
25-
block-buffer = { git = "https://github.com/RustCrypto/utils" }
2624
# https://github.com/RustCrypto/stream-ciphers/pull/450
2725
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers" }
28-
# https://github.com/RustCrypto/traits/pull/1976
29-
cipher = { git = "https://github.com/RustCrypto/traits" }
3026
# https://github.com/RustCrypto/MACs/pull/206
3127
cmac = { git = "https://github.com/RustCrypto/MACs" }
32-
# https://github.com/RustCrypto/traits/pull/1976
33-
crypto-common = { git = "https://github.com/RustCrypto/traits" }
3428
# https://github.com/RustCrypto/block-modes/pull/84
3529
ctr = { git = "https://github.com/RustCrypto/block-modes" }
3630
# https://github.com/RustCrypto/utils/pull/1208
3731
dbl = { git = "https://github.com/RustCrypto/utils" }
38-
# https://github.com/RustCrypto/traits/pull/1976
39-
digest = { git = "https://github.com/RustCrypto/traits" }
40-
# https://github.com/RustCrypto/utils/pull/1208
41-
inout = { git = "https://github.com/RustCrypto/utils" }
4232
# https://github.com/RustCrypto/MACs/pull/206
4333
pmac = { git = "https://github.com/RustCrypto/MACs" }

aes-gcm-siv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919
[dependencies]
2020
aead = { version = "0.6.0-rc.1", default-features = false }
2121
aes = { version = "0.9.0-rc.0", optional = true }
22-
cipher = "0.5.0-rc.0"
22+
cipher = "0.5.0-rc.1"
2323
ctr = "0.10.0-rc.0"
2424
polyval = { version = "0.7.0-rc.1", default-features = false }
2525
subtle = { version = "2", default-features = false }

aes-gcm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919
[dependencies]
2020
aead = { version = "0.6.0-rc.1", default-features = false }
2121
aes = { version = "0.9.0-rc.0", optional = true }
22-
cipher = "0.5.0-rc.0"
22+
cipher = "0.5.0-rc.1"
2323
ctr = "0.10.0-rc.0"
2424
ghash = { version = "0.6.0-rc.1", default-features = false }
2525
subtle = { version = "2", default-features = false }

aes-siv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919
[dependencies]
2020
aead = "0.6.0-rc.1"
2121
aes = "0.9.0-rc.0"
22-
cipher = "0.5.0-rc.0"
22+
cipher = "0.5.0-rc.1"
2323
cmac = "0.8.0-rc.0"
2424
ctr = "0.10.0-rc.0"
2525
dbl = "0.5.0-pre"

ccm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.85"
1515

1616
[dependencies]
1717
aead = { version = "0.6.0-rc.1", default-features = false }
18-
cipher = { version = "0.5.0-rc.0", default-features = false }
18+
cipher = { version = "0.5.0-rc.1", default-features = false }
1919
ctr = { version = "0.10.0-rc.0", default-features = false }
2020
subtle = { version = "2", default-features = false }
2121

chacha20poly1305/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rust-version = "1.85"
2222
[dependencies]
2323
aead = { version = "0.6.0-rc.1", default-features = false }
2424
chacha20 = { version = "0.10.0-rc.0", default-features = false, features = ["xchacha"] }
25-
cipher = "0.5.0-rc.0"
25+
cipher = "0.5.0-rc.1"
2626
poly1305 = "0.9.0-rc.1"
2727
zeroize = { version = "1.8", optional = true, default-features = false }
2828

eax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rust-version = "1.85"
2121

2222
[dependencies]
2323
aead = { version = "0.6.0-rc.1", default-features = false }
24-
cipher = "0.5.0-rc.0"
24+
cipher = "0.5.0-rc.1"
2525
cmac = "0.8.0-rc.0"
2626
ctr = "0.10.0-rc.0"
2727
subtle = { version = "2", default-features = false }

ocb3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
aead = { version = "0.6.0-rc.1", default-features = false }
20-
cipher = "0.5.0-rc.0"
20+
cipher = "0.5.0-rc.1"
2121
ctr = "0.10.0-rc.0"
2222
dbl = "0.5.0-pre"
2323
subtle = { version = "2", default-features = false }

xaes-256-gcm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919
aead = { version = "0.6.0-rc.1", default-features = false }
2020
aes = "0.9.0-rc.0"
2121
aes-gcm = { version = "0.11.0-rc.0", default-features = false, features = ["aes"] }
22-
cipher = "0.5.0-rc.0"
22+
cipher = "0.5.0-rc.1"
2323
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)