diff --git a/Cargo.lock b/Cargo.lock index b59acd9..e706684 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -24,7 +24,7 @@ dependencies = [ [[package]] name = "belt-ctr" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" dependencies = [ "belt-block", "cipher", @@ -58,7 +58,7 @@ dependencies = [ [[package]] name = "cbc" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" dependencies = [ "aes", "cipher", @@ -67,7 +67,7 @@ dependencies = [ [[package]] name = "cfb-mode" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" dependencies = [ "aes", "belt-block", @@ -77,7 +77,7 @@ dependencies = [ [[package]] name = "cfb8" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" dependencies = [ "aes", "cipher", @@ -123,7 +123,7 @@ dependencies = [ [[package]] name = "ctr" -version = "0.10.0-rc.0" +version = "0.10.0-rc.1" dependencies = [ "aes", "cipher", @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "cts" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" dependencies = [ "aes", "belt-block", @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "ige" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" dependencies = [ "aes", "cipher", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "ofb" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" dependencies = [ "aes", "cipher", @@ -213,7 +213,7 @@ dependencies = [ [[package]] name = "pcbc" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" dependencies = [ "aes", "cipher", diff --git a/belt-ctr/Cargo.toml b/belt-ctr/Cargo.toml index 02e95f4..8840547 100644 --- a/belt-ctr/Cargo.toml +++ b/belt-ctr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt-ctr" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" description = "CTR block mode of operation specified by the BelT standard" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cbc/Cargo.toml b/cbc/Cargo.toml index 23d41a1..5eba944 100644 --- a/cbc/Cargo.toml +++ b/cbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbc" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" description = "Cipher Block Chaining (CBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cfb-mode/Cargo.toml b/cfb-mode/Cargo.toml index e05832f..585ea8a 100644 --- a/cfb-mode/Cargo.toml +++ b/cfb-mode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfb-mode" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" description = "Cipher Feedback (CFB) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cfb8/Cargo.toml b/cfb8/Cargo.toml index a79a320..d41db4b 100644 --- a/cfb8/Cargo.toml +++ b/cfb8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfb8" -version = "0.9.0-rc.0" +version = "0.9.0-rc.1" description = "Cipher Feedback with eight bit feedback (CFB-8) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ctr/Cargo.toml b/ctr/Cargo.toml index f073810..011a580 100644 --- a/ctr/Cargo.toml +++ b/ctr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctr" -version = "0.10.0-rc.0" +version = "0.10.0-rc.1" description = "CTR block modes of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cts/Cargo.toml b/cts/Cargo.toml index 8e1bb29..5a26f1d 100644 --- a/cts/Cargo.toml +++ b/cts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cts" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" description = "Generic implementation of the ciphertext stealing block modes of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ige/Cargo.toml b/ige/Cargo.toml index a75992b..c2e6e2f 100644 --- a/ige/Cargo.toml +++ b/ige/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ige" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" description = "Infinite Garble Extension (IGE) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/ofb/Cargo.toml b/ofb/Cargo.toml index b5308ad..29a942f 100644 --- a/ofb/Cargo.toml +++ b/ofb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ofb" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" description = "Output Feedback (OFB) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/pcbc/Cargo.toml b/pcbc/Cargo.toml index c6ce6fb..53692a4 100644 --- a/pcbc/Cargo.toml +++ b/pcbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pcbc" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" description = "Propagating Cipher Block Chaining (PCBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"