From 5befb0e6d4bdca5a3dcb7a00e4a6be7c99c879ad Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 24 Jan 2026 09:01:55 -0700 Subject: [PATCH] Bump `cipher` to v0.5.0-rc.6 --- Cargo.lock | 12 ++++++------ aes/Cargo.toml | 4 ++-- aria/Cargo.toml | 4 ++-- belt-block/Cargo.toml | 4 ++-- blowfish/Cargo.toml | 4 ++-- camellia/Cargo.toml | 4 ++-- cast5/Cargo.toml | 4 ++-- cast6/Cargo.toml | 4 ++-- des/Cargo.toml | 4 ++-- gift/Cargo.toml | 4 ++-- idea/Cargo.toml | 4 ++-- kuznyechik/Cargo.toml | 4 ++-- magma/Cargo.toml | 4 ++-- rc2/Cargo.toml | 4 ++-- rc5/Cargo.toml | 4 ++-- rc6/Cargo.toml | 4 ++-- serpent/Cargo.toml | 4 ++-- sm4/Cargo.toml | 4 ++-- speck/Cargo.toml | 4 ++-- threefish/Cargo.toml | 4 ++-- twofish/Cargo.toml | 4 ++-- xtea/Cargo.toml | 4 ++-- 22 files changed, 48 insertions(+), 48 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1d8e547f..7a67901e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" [[package]] name = "cipher" -version = "0.5.0-rc.3" +version = "0.5.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" +checksum = "eba4d87abf4032a6d927f84b71af5086128a3349b929b4501c51a0fe0981a937" dependencies = [ "blobby", "block-buffer", @@ -113,9 +113,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.8" +version = "0.2.0-rc.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6165b8029cdc3e765b74d3548f85999ee799d5124877ce45c2c85ca78e4d4aa" +checksum = "c7722afd27468475c9b6063dc03a57ef2ca833816981619f8ebe64d38d207eef" dependencies = [ "hybrid-array", ] @@ -161,9 +161,9 @@ dependencies = [ [[package]] name = "inout" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7357b6e7aa75618c7864ebd0634b115a7218b0615f4cb1df33ac3eca23943d4" +checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ "hybrid-array", ] diff --git a/aes/Cargo.toml b/aes/Cargo.toml index 6d49a5cd..c6411f9d 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -14,14 +14,14 @@ categories = ["cryptography", "no-std"] [dependencies] cfg-if = "1" -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" zeroize = { version = "1.5.6", optional = true, default-features = false, features = ["aarch64"] } [target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies] cpufeatures = "0.2.12" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/aria/Cargo.toml b/aria/Cargo.toml index 4337ee66..a128665c 100644 --- a/aria/Cargo.toml +++ b/aria/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "aria", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/belt-block/Cargo.toml b/belt-block/Cargo.toml index 3c391364..fcc41351 100644 --- a/belt-block/Cargo.toml +++ b/belt-block/Cargo.toml @@ -12,10 +12,10 @@ repository = "https://github.com/RustCrypto/block-ciphers" keywords = ["crypto", "belt-block", "belt", "stb"] [dependencies] -cipher = { version = "0.5.0-rc.3", optional = true } +cipher = { version = "0.5.0-rc.6", optional = true } [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index 35aaf815..fb1c302c 100644 --- a/blowfish/Cargo.toml +++ b/blowfish/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "blowfish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" byteorder = { version = "1.1", default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] bcrypt = [] diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index a2e82236..7d8dfea5 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -14,10 +14,10 @@ categories = ["cryptography", "no-std"] [dependencies] byteorder = { version = "1.1", default-features = false } -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 6f388999..e90325cc 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "cast5", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index 8a39cb25..f0bf6cf6 100644 --- a/cast6/Cargo.toml +++ b/cast6/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "cast6", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/des/Cargo.toml b/des/Cargo.toml index 3a7912e1..c256cbab 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "des", "tdes", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/gift/Cargo.toml b/gift/Cargo.toml index 5f476af8..467d79a8 100644 --- a/gift/Cargo.toml +++ b/gift/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "gift", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/idea/Cargo.toml b/idea/Cargo.toml index 568382fa..4f9e75dd 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "idea", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index cfd0a5fa..3bd602d1 100644 --- a/kuznyechik/Cargo.toml +++ b/kuznyechik/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "kuznyechik", "gost", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" cfg-if = "1" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/magma/Cargo.toml b/magma/Cargo.toml index b95ffc4e..4191188a 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "magma", "gost", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index 49fa44a8..e35d2e50 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "rc2", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index b0fb0cf4..2b70fa9f 100644 --- a/rc5/Cargo.toml +++ b/rc5/Cargo.toml @@ -12,10 +12,10 @@ keywords = ["crypto", "rc5", "block-cipher"] categories = ["cryptography"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc6/Cargo.toml b/rc6/Cargo.toml index ba8d18d3..bb40418f 100644 --- a/rc6/Cargo.toml +++ b/rc6/Cargo.toml @@ -12,10 +12,10 @@ keywords = ["crypto", "rc6", "block-cipher"] categories = ["cryptography"] [dependencies] -cipher = { version = "0.5.0-rc.3", features = ["zeroize"] } +cipher = { version = "0.5.0-rc.6", features = ["zeroize"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = [] diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index a39aeafe..db17c7b5 100644 --- a/serpent/Cargo.toml +++ b/serpent/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "serpent", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index f4b9e830..58ffc6f2 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "sm4", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/speck/Cargo.toml b/speck/Cargo.toml index 74325322..81ac2a8c 100644 --- a/speck/Cargo.toml +++ b/speck/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "speck", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index 376dd6b3..85dd3881 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["crypto", "threefish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = { version = "0.5.0-rc.3", optional = true } +cipher = { version = "0.5.0-rc.6", optional = true } zeroize = { version = "1.6", optional = true, default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 7d40fbf1..3322da8f 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "twofish", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } hex-literal = "1" [features] diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index b8d2df24..c3104441 100644 --- a/xtea/Cargo.toml +++ b/xtea/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "xtea", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "0.5.0-rc.3" +cipher = "0.5.0-rc.6" [dev-dependencies] -cipher = { version = "0.5.0-rc.3", features = ["dev"] } +cipher = { version = "0.5.0-rc.6", features = ["dev"] } [features] zeroize = ["cipher/zeroize"]