diff --git a/Cargo.lock b/Cargo.lock index 33c4c04c..d932fc6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,9 +37,9 @@ checksum = "89af0b093cc13baa4e51e64e65ec2422f7e73aea0e612e5ad3872986671622f1" [[package]] name = "block-buffer" -version = "0.11.0-rc.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9ef36a6fcdb072aa548f3da057640ec10859eb4e91ddf526ee648d50c76a949" +checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" dependencies = [ "hybrid-array", "zeroize", @@ -91,9 +91,9 @@ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" [[package]] name = "cipher" -version = "0.5.0-rc.2" +version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155e4a260750fa4f7754649f049748aacc31db238a358d85fd721002f230f92f" +checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ "blobby", "block-buffer", @@ -113,9 +113,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.5" +version = "0.2.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" +checksum = "e6165b8029cdc3e765b74d3548f85999ee799d5124877ce45c2c85ca78e4d4aa" dependencies = [ "hybrid-array", ] diff --git a/aes/Cargo.toml b/aes/Cargo.toml index a28856f6..6d49a5cd 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.2" +cipher = "0.5.0-rc.3" 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.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/aria/Cargo.toml b/aria/Cargo.toml index b1a40ae7..5f3f8be5 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/belt-block/Cargo.toml b/belt-block/Cargo.toml index 19066ab8..3c391364 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.2", optional = true } +cipher = { version = "0.5.0-rc.3", optional = true } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index 13167e09..35aaf815 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.2" +cipher = "0.5.0-rc.3" byteorder = { version = "1.1", default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] bcrypt = [] diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 4113eba0..6339fe28 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index d7e8142a..2b2dcd62 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index c10a200f..eab559df 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/des/Cargo.toml b/des/Cargo.toml index bc3c2ffa..3a7912e1 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/gift/Cargo.toml b/gift/Cargo.toml index 1a99d020..5f476af8 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/idea/Cargo.toml b/idea/Cargo.toml index dfa3c8cd..ae6b375e 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index 39d15b69..cfd0a5fa 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.2" +cipher = "0.5.0-rc.3" cfg-if = "1" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/magma/Cargo.toml b/magma/Cargo.toml index 4bf44a2c..b95ffc4e 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index 6f3cbc69..e55a36c1 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index 3bfbde66..b1df8170 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc6/Cargo.toml b/rc6/Cargo.toml index a90cfa41..ba8d18d3 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.2", features = ["zeroize"] } +cipher = { version = "0.5.0-rc.3", features = ["zeroize"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = [] diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index 5d14e77a..a39aeafe 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = ["cipher/zeroize"] diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index 367df3c6..f4b9e830 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/speck/Cargo.toml b/speck/Cargo.toml index cb98e647..30949187 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index 33e87a92..aa01e5d5 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.2", optional = true } +cipher = { version = "0.5.0-rc.3", optional = true } zeroize = { version = "1.6", optional = true, default-features = false } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 512b3721..75776f65 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index 84d3707a..4bcbfe5a 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.2" +cipher = "0.5.0-rc.3" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } [features] zeroize = ["cipher/zeroize"]