Skip to content

Commit 63a37c8

Browse files
authored
Use release versions of block cipher crates (#110)
1 parent a19e7bd commit 63a37c8

10 files changed

Lines changed: 27 additions & 28 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

belt-ctr/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
cipher = { version = "0.5", features = ["stream-wrapper"] }
17-
belt-block = "0.2.0-rc.3"
17+
belt-block = "0.2"
1818

1919
[dev-dependencies]
2020
hex-literal = "1"
21-
belt-block = "0.2.0-rc.3"
2221
cipher = { version = "0.5", features = ["dev"] }
2322

2423
[features]

cbc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
1616
cipher = "0.5"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
19+
aes = "0.9"
2020
cipher = { version = "0.5", features = ["dev"] }
2121
hex-literal = "1"
2222

cfb-mode/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ categories = ["cryptography", "no-std"]
1616
cipher = "0.5"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
20-
belt-block = "0.2.0-rc.3"
19+
aes = "0.9"
20+
belt-block = "0.2"
2121
cipher = { version = "0.5", features = ["dev"] }
2222
hex-literal = "1"
2323

cfb8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
1616
cipher = "0.5"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
19+
aes = "0.9"
2020
cipher = { version = "0.5", features = ["dev"] }
2121
hex-literal = "1"
2222

ctr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ categories = ["cryptography", "no-std"]
1616
cipher = { version = "0.5", features = ["stream-wrapper"] }
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
20-
magma = "0.10.0-rc.3"
21-
kuznyechik = "0.9.0-rc.3"
19+
aes = "0.9"
20+
magma = "0.10"
21+
kuznyechik = "0.9"
2222
cipher = { version = "0.5", features = ["dev"] }
2323
hex-literal = "1"
2424

cts/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cipher = "0.5"
1818
[dev-dependencies]
1919
cipher = { version = "0.5", features = ["dev"] }
2020
hex-literal = "1"
21-
aes = "0.9.0-rc.4"
22-
belt-block = "0.2.0-rc.3"
21+
aes = "0.9"
22+
belt-block = "0.2"
2323

2424
[lints]
2525
workspace = true

ige/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
1616
cipher = "0.5"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
19+
aes = "0.9"
2020
cipher = { version = "0.5", features = ["dev"] }
2121
hex-literal = "1"
2222

ofb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
1616
cipher = { version = "0.5", features = ["stream-wrapper"] }
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
19+
aes = "0.9"
2020
cipher = { version = "0.5", features = ["dev"] }
2121
hex-literal = "1"
2222

pcbc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"]
1616
cipher = "0.5"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.4"
19+
aes = "0.9"
2020
cipher = { version = "0.5", features = ["dev"] }
2121
hex-literal = "1"
2222

0 commit comments

Comments
 (0)