diff --git a/aes-siv/src/siv.rs b/aes-siv/src/siv.rs index 2f646e42..593cfe71 100644 --- a/aes-siv/src/siv.rs +++ b/aes-siv/src/siv.rs @@ -99,7 +99,7 @@ pub const MAX_HEADERS: usize = 126; type Ctr128BE = ctr::CtrCore; /// Size of an AES-SIV key given a particular cipher -pub type KeySize = <::KeySize as Add>::Output; +pub(crate) type KeySize = <::KeySize as Add>::Output; /// Synthetic Initialization Vector (SIV) mode, providing misuse-resistant /// authenticated encryption (MRAE).