Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,13 @@ aes-gcm = { path = "aes-gcm" }

# https://github.com/RustCrypto/block-modes/pull/84
belt-ctr = { git = "https://github.com/RustCrypto/block-modes" }
# https://github.com/RustCrypto/utils/pull/1208
block-buffer = { git = "https://github.com/RustCrypto/utils" }
# https://github.com/RustCrypto/stream-ciphers/pull/450
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers" }
# https://github.com/RustCrypto/traits/pull/1976
cipher = { git = "https://github.com/RustCrypto/traits" }
# https://github.com/RustCrypto/MACs/pull/206
cmac = { git = "https://github.com/RustCrypto/MACs" }
# https://github.com/RustCrypto/traits/pull/1976
crypto-common = { git = "https://github.com/RustCrypto/traits" }
# https://github.com/RustCrypto/block-modes/pull/84
ctr = { git = "https://github.com/RustCrypto/block-modes" }
# https://github.com/RustCrypto/utils/pull/1208
dbl = { git = "https://github.com/RustCrypto/utils" }
# https://github.com/RustCrypto/traits/pull/1976
digest = { git = "https://github.com/RustCrypto/traits" }
# https://github.com/RustCrypto/utils/pull/1208
inout = { git = "https://github.com/RustCrypto/utils" }
# https://github.com/RustCrypto/MACs/pull/206
pmac = { git = "https://github.com/RustCrypto/MACs" }
2 changes: 1 addition & 1 deletion aes-gcm-siv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.85"
[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
aes = { version = "0.9.0-rc.0", optional = true }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
ctr = "0.10.0-rc.0"
polyval = { version = "0.7.0-rc.1", default-features = false }
subtle = { version = "2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.85"
[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
aes = { version = "0.9.0-rc.0", optional = true }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
ctr = "0.10.0-rc.0"
ghash = { version = "0.6.0-rc.1", default-features = false }
subtle = { version = "2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion aes-siv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.85"
[dependencies]
aead = "0.6.0-rc.1"
aes = "0.9.0-rc.0"
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
cmac = "0.8.0-rc.0"
ctr = "0.10.0-rc.0"
dbl = "0.5.0-pre"
Expand Down
2 changes: 1 addition & 1 deletion ccm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.85"

[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
cipher = { version = "0.5.0-rc.0", default-features = false }
cipher = { version = "0.5.0-rc.1", default-features = false }
ctr = { version = "0.10.0-rc.0", default-features = false }
subtle = { version = "2", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion chacha20poly1305/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rust-version = "1.85"
[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
chacha20 = { version = "0.10.0-rc.0", default-features = false, features = ["xchacha"] }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
poly1305 = "0.9.0-rc.1"
zeroize = { version = "1.8", optional = true, default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion eax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ rust-version = "1.85"

[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
cmac = "0.8.0-rc.0"
ctr = "0.10.0-rc.0"
subtle = { version = "2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion ocb3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"

[dependencies]
aead = { version = "0.6.0-rc.1", default-features = false }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
ctr = "0.10.0-rc.0"
dbl = "0.5.0-pre"
subtle = { version = "2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion xaes-256-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.85"
aead = { version = "0.6.0-rc.1", default-features = false }
aes = "0.9.0-rc.0"
aes-gcm = { version = "0.11.0-rc.0", default-features = false, features = ["aes"] }
cipher = "0.5.0-rc.0"
cipher = "0.5.0-rc.1"
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }

[dev-dependencies]
Expand Down