Skip to content

Commit fce7f59

Browse files
authored
Bump dependencies (#65)
Updates the following dependencies: - `aes` v0.9.0-rc.4 - `belt-block` v0.2.0-rc.3 - (vicariously) `cipher` v0.5.0-rc.8 The latter changed the re-export of `crypto-common` from `cipher::crypto_common` to `cipher::common`, which has been updated in `aes-kw`. Also cuts the following releases: - `aes-kw` v0.3.0-rc.2 - `belt-kwp` v0.1.0-rc.1
1 parent 237f9db commit fce7f59

6 files changed

Lines changed: 26 additions & 26 deletions

File tree

Cargo.lock

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

aes-kw/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-kw"
3-
version = "0.3.0-rc.1"
3+
version = "0.3.0-rc.2"
44
description = "NIST 800-38F AES Key Wrap (KW) and Key Wrap with Padding (KWP) modes"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ edition = "2024"
1313
rust-version = "1.85"
1414

1515
[dependencies]
16-
aes = "0.9.0-rc.2"
16+
aes = "0.9.0-rc.4"
1717
const-oid = { version = "0.10", optional = true }
1818

1919
[dev-dependencies]

aes-kw/src/kw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::{Error, IV_LEN, IvLen, ctx::Ctx, error::IntegrityCheckFailed};
44
use aes::cipher::{
55
Array, Block, BlockCipherDecrypt, BlockCipherEncrypt,
66
array::ArraySize,
7-
crypto_common::{InnerInit, InnerUser},
7+
common::{InnerInit, InnerUser},
88
typenum::{Mod, NonZero, Sum, U16, Zero},
99
};
1010

aes-kw/src/kwp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use crate::{Error, IV_LEN, IntegrityCheckFailed, IvLen, ctx::Ctx};
44
use aes::cipher::{
55
Array, Block, BlockCipherDecrypt, BlockCipherEncrypt,
66
array::ArraySize,
7+
common::{InnerInit, InnerUser},
78
consts::{B1, U7, U4294967296},
8-
crypto_common::{InnerInit, InnerUser},
99
typenum::{Add1, IsLess, Le, NonZero, Prod, Quot, Sum, U16},
1010
};
1111

aes-kw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub use kwp::AesKwp;
2424

2525
pub use aes;
2626
pub use aes::cipher;
27-
pub use aes::cipher::{KeyInit, crypto_common::InnerInit};
27+
pub use aes::cipher::{KeyInit, common::InnerInit};
2828

2929
/// AES-128 key wrapping
3030
pub type KwAes128 = AesKw<aes::Aes128>;

belt-kwp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "belt-kwp"
3-
version = "0.1.0-rc.0"
3+
version = "0.1.0-rc.1"
44
description = "STB 34.101.30-2020 Key Wrap Algorithm (KWP) implementation using Belt block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -12,7 +12,7 @@ edition = "2024"
1212
rust-version = "1.85"
1313

1414
[dependencies]
15-
belt-block = "0.2.0-rc.2"
15+
belt-block = "0.2.0-rc.3"
1616

1717
[dev-dependencies]
1818
hex-literal = "1"

0 commit comments

Comments
 (0)