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
38 changes: 19 additions & 19 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions aes-kw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-kw"
version = "0.3.0-rc.1"
version = "0.3.0-rc.2"
description = "NIST 800-38F AES Key Wrap (KW) and Key Wrap with Padding (KWP) modes"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ edition = "2024"
rust-version = "1.85"

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion aes-kw/src/kw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::{Error, IV_LEN, IvLen, ctx::Ctx, error::IntegrityCheckFailed};
use aes::cipher::{
Array, Block, BlockCipherDecrypt, BlockCipherEncrypt,
array::ArraySize,
crypto_common::{InnerInit, InnerUser},
common::{InnerInit, InnerUser},
typenum::{Mod, NonZero, Sum, U16, Zero},
};

Expand Down
2 changes: 1 addition & 1 deletion aes-kw/src/kwp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use crate::{Error, IV_LEN, IntegrityCheckFailed, IvLen, ctx::Ctx};
use aes::cipher::{
Array, Block, BlockCipherDecrypt, BlockCipherEncrypt,
array::ArraySize,
common::{InnerInit, InnerUser},
consts::{B1, U7, U4294967296},
crypto_common::{InnerInit, InnerUser},
typenum::{Add1, IsLess, Le, NonZero, Prod, Quot, Sum, U16},
};

Expand Down
2 changes: 1 addition & 1 deletion aes-kw/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub use kwp::AesKwp;

pub use aes;
pub use aes::cipher;
pub use aes::cipher::{KeyInit, crypto_common::InnerInit};
pub use aes::cipher::{KeyInit, common::InnerInit};

/// AES-128 key wrapping
pub type KwAes128 = AesKw<aes::Aes128>;
Expand Down
4 changes: 2 additions & 2 deletions belt-kwp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "belt-kwp"
version = "0.1.0-rc.0"
version = "0.1.0-rc.1"
description = "STB 34.101.30-2020 Key Wrap Algorithm (KWP) implementation using Belt block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -12,7 +12,7 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
belt-block = "0.2.0-rc.2"
belt-block = "0.2.0-rc.3"

[dev-dependencies]
hex-literal = "1"
Expand Down
Loading