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
47 changes: 25 additions & 22 deletions Cargo.lock

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

7 changes: 0 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,3 @@ members = [

[profile.dev]
opt-level = 2

[patch.crates-io]
# https://github.com/RustCrypto/traits/pull/1998
cipher = { git = "https://github.com/RustCrypto/traits" }
# https://github.com/RustCrypto/utils/pull/1187
# https://github.com/RustCrypto/utils/pull/1207
blobby = { git = "https://github.com/RustCrypto/utils" }
8 changes: 4 additions & 4 deletions belt-ctr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers", "belt"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
belt-block = "0.2.0-rc.1"
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
belt-block = "0.2.0-rc.2"

[dev-dependencies]
hex-literal = "1"
belt-block = "0.2.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
belt-block = "0.2.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }

[features]
alloc = ["cipher/alloc"]
Expand Down
6 changes: 3 additions & 3 deletions cbc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
aes = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
10 changes: 5 additions & 5 deletions cfb-mode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cfb-mode"
version = "0.9.0-rc.1"
version = "0.9.0-rc.2"
description = "Cipher Feedback (CFB) block cipher mode of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,12 +13,12 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
aes = "0.9.0-rc.1"
belt-block = "0.2.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
belt-block = "0.2.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
8 changes: 4 additions & 4 deletions cfb8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cfb8"
version = "0.9.0-rc.1"
version = "0.9.0-rc.2"
description = "Cipher Feedback with eight bit feedback (CFB-8) block cipher mode of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
aes = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
10 changes: 5 additions & 5 deletions ctr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }

[dev-dependencies]
aes = "0.9.0-rc.1"
magma = "0.10.0-rc.1"
kuznyechik = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
magma = "0.10.0-rc.2"
kuznyechik = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
8 changes: 4 additions & 4 deletions cts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"
aes = "0.9.0-rc.1"
belt-block = "0.2.0-rc.1"
aes = "0.9.0-rc.2"
belt-block = "0.2.0-rc.2"

[package.metadata.docs.rs]
all-features = true
Expand Down
6 changes: 3 additions & 3 deletions ige/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
aes = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
6 changes: 3 additions & 3 deletions ofb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }

[dev-dependencies]
aes = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
6 changes: 3 additions & 3 deletions pcbc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "ciphers"]
categories = ["cryptography", "no-std"]

[dependencies]
cipher = "0.5.0-rc.1"
cipher = "0.5.0-rc.2"

[dev-dependencies]
aes = "0.9.0-rc.1"
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
aes = "0.9.0-rc.2"
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
Loading