Skip to content

Commit

Permalink
feat(aes-gcm-siv): re-export aes crate (#603)
Browse files Browse the repository at this point in the history
added to ensure consistency with it's sister `aes-gcm` crate, which also re-exports `aes` (aes-gcm/src/lib.rs:114).

finds specific use in defining a `Key` generic for example; it takes a `KeySizeUser` which are a majority `Aes*` structs from `aes`.
  • Loading branch information
gstand committed May 3, 2024
1 parent dfe116c commit f4e3924
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aes-gcm-siv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@

pub use aead::{self, AeadCore, AeadInPlace, Error, Key, KeyInit, KeySizeUser};

#[cfg(feature = "aes")]
pub use aes;

use cipher::{
array::Array,
consts::{U0, U12, U16},
Expand Down

0 comments on commit f4e3924

Please sign in to comment.