diff --git a/aes-gcm-siv/src/lib.rs b/aes-gcm-siv/src/lib.rs index d6dfab57..c1e2f9e5 100644 --- a/aes-gcm-siv/src/lib.rs +++ b/aes-gcm-siv/src/lib.rs @@ -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},