diff --git a/Cargo.lock b/Cargo.lock index 306b8ce..673a328 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -24,7 +24,7 @@ dependencies = [ [[package]] name = "belt-ctr" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" dependencies = [ "belt-block", "cipher", @@ -58,7 +58,7 @@ dependencies = [ [[package]] name = "cbc" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" dependencies = [ "aes", "cipher", @@ -123,7 +123,7 @@ dependencies = [ [[package]] name = "ctr" -version = "0.10.0-rc.1" +version = "0.10.0-rc.2" dependencies = [ "aes", "cipher", @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "cts" -version = "0.7.0-rc.1" +version = "0.7.0-rc.2" dependencies = [ "aes", "belt-block", @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "ige" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" dependencies = [ "aes", "cipher", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "ofb" -version = "0.7.0-rc.1" +version = "0.7.0-rc.2" dependencies = [ "aes", "cipher", @@ -213,7 +213,7 @@ dependencies = [ [[package]] name = "pcbc" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" dependencies = [ "aes", "cipher", diff --git a/belt-ctr/Cargo.toml b/belt-ctr/Cargo.toml index 0e0e085..bbed96b 100644 --- a/belt-ctr/Cargo.toml +++ b/belt-ctr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt-ctr" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" 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 2358651..11c30fb 100644 --- a/cbc/Cargo.toml +++ b/cbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbc" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" description = "Cipher Block Chaining (CBC) 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 5e05196..3f6e038 100644 --- a/ctr/Cargo.toml +++ b/ctr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctr" -version = "0.10.0-rc.1" +version = "0.10.0-rc.2" 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 216611e..0febd6c 100644 --- a/cts/Cargo.toml +++ b/cts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cts" -version = "0.7.0-rc.1" +version = "0.7.0-rc.2" 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 eb6ea26..befda2a 100644 --- a/ige/Cargo.toml +++ b/ige/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ige" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" 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 b3ed250..bf02f77 100644 --- a/ofb/Cargo.toml +++ b/ofb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ofb" -version = "0.7.0-rc.1" +version = "0.7.0-rc.2" 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 3513254..0b13a0a 100644 --- a/pcbc/Cargo.toml +++ b/pcbc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pcbc" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" description = "Propagating Cipher Block Chaining (PCBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"