Skip to content

Commit

Permalink
chore(deps): bump cipher from 0.5.0-pre.7 to 0.5.0-pre.8
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed Feb 23, 2025
1 parent b67dec3 commit f1adaf4
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 80 deletions.
89 changes: 26 additions & 63 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,20 @@ members = ["belt-mac", "cbc-mac", "cmac", "hmac", "pmac", "retail-mac"]

[profile.dev]
opt-level = 2

[patch.crates-io]
# https://github.com/RustCrypto/hashes/pull/652
md-5 = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }
sha1 = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }
sha2 = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }
streebog = { git = "https://github.com/RustCrypto/hashes.git", branch = "edition_upgrade" }

# https://github.com/RustCrypto/block-ciphers/pull/472
aes = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/edition-2024" }
des = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/edition-2024" }
belt-block = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/edition-2024" }
kuznyechik = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/edition-2024" }
magma = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/edition-2024" }

# https://github.com/RustCrypto/utils/pull/1149
dbl = { git = "https://github.com/RustCrypto/utils.git" }
6 changes: 3 additions & 3 deletions belt-mac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ categories = ["cryptography", "no-std"]

[dependencies]
belt-block = "0.2.0-pre.2"
cipher = "=0.5.0-pre.7"
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
cipher = "=0.5.0-pre.8"
digest = { version = "=0.11.0-pre.10", features = ["mac"] }

[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
hex-literal = "0.4"

[features]
Expand Down
6 changes: 3 additions & 3 deletions cbc-mac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ repository = "https://github.com/RustCrypto/MACs"
keywords = ["crypto", "mac", "daa"]

[dependencies]
cipher = "=0.5.0-pre.7"
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
cipher = "=0.5.0-pre.8"
digest = { version = "=0.11.0-pre.10", features = ["mac"] }

[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
hex-literal = "0.4"

aes = "0.9.0-pre.2"
Expand Down
6 changes: 3 additions & 3 deletions cmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ categories = ["cryptography", "no-std"]
exclude = ["tests/cavp_large.rs", "tests/data/cavp_aes128_large.blb"]

[dependencies]
cipher = "=0.5.0-pre.7"
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
cipher = "=0.5.0-pre.8"
digest = { version = "=0.11.0-pre.10", features = ["mac"] }
dbl = "0.4.0-rc.0"

[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
hex-literal = "0.4"

aes = "0.9.0-pre.2"
Expand Down
4 changes: 2 additions & 2 deletions hmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"]
rust-version = "1.85"

[dependencies]
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
digest = { version = "=0.11.0-pre.10", features = ["mac"] }

[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
md-5 = { version = "=0.11.0-pre.4", default-features = false }
sha1 = { version = "=0.11.0-pre.4", default-features = false }
sha2 = { version = "=0.11.0-pre.4", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions pmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ keywords = ["crypto", "mac", "pmac"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "=0.5.0-pre.7"
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
cipher = "=0.5.0-pre.8"
digest = { version = "=0.11.0-pre.10", features = ["mac"] }
dbl = "0.4.0-rc.0"

[dev-dependencies]
aes = "0.9.0-pre.2"
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }

[features]
std = ["digest/std"]
Expand Down
6 changes: 3 additions & 3 deletions retail-mac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ repository = "https://github.com/RustCrypto/MACs"
keywords = ["crypto", "mac"]

[dependencies]
cipher = "=0.5.0-pre.7"
digest = { version = "=0.11.0-pre.9", features = ["mac"] }
cipher = "=0.5.0-pre.8"
digest = { version = "=0.11.0-pre.10", features = ["mac"] }

[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["dev"] }
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
hex-literal = "0.4"

aes = "0.9.0-pre.2"
Expand Down

0 comments on commit f1adaf4

Please # to comment.