diff --git a/crypto-common/src/lib.rs b/crypto-common/src/lib.rs index 45ee05534..712fcf49b 100644 --- a/crypto-common/src/lib.rs +++ b/crypto-common/src/lib.rs @@ -39,7 +39,10 @@ pub type Block = Array::BlockSize>; pub type ParBlocks = Array, ::ParBlocksSize>; /// Output array of [`OutputSizeUser`] implementors. -pub type Output = Array::OutputSize>; +pub type Output = Array>; + +/// Alias for the output size of [`OutputSizeUser`] implementors. +pub type OutputSize = ::OutputSize; /// Key used by [`KeySizeUser`] implementors. pub type Key = Array::KeySize>;