pub type Tag = Output<Polyval>;
Expand description
POLYVAL tags (16-bytes)
Aliased Type§
struct Tag { /* private fields */ }
Implementations
Source§impl<U> Output<U>where
U: UniversalHash,
impl<U> Output<U>where
U: UniversalHash,
Sourcepub fn new(
bytes: GenericArray<u8, <U as UniversalHash>::BlockSize>,
) -> Output<U>
pub fn new( bytes: GenericArray<u8, <U as UniversalHash>::BlockSize>, ) -> Output<U>
Create a new Output
block.
Sourcepub fn into_bytes(self) -> GenericArray<u8, <U as UniversalHash>::BlockSize>
pub fn into_bytes(self) -> GenericArray<u8, <U as UniversalHash>::BlockSize>
Get the inner GenericArray
this type wraps
Trait Implementations
Source§impl<U> ConstantTimeEq for Output<U>where
U: UniversalHash,
impl<U> ConstantTimeEq for Output<U>where
U: UniversalHash,
Source§impl<'a, U> From<&'a GenericArray<u8, <U as UniversalHash>::BlockSize>> for Output<U>where
U: UniversalHash,
impl<'a, U> From<&'a GenericArray<u8, <U as UniversalHash>::BlockSize>> for Output<U>where
U: UniversalHash,
Source§fn from(
bytes: &'a GenericArray<u8, <U as UniversalHash>::BlockSize>,
) -> Output<U>
fn from( bytes: &'a GenericArray<u8, <U as UniversalHash>::BlockSize>, ) -> Output<U>
Converts to this type from the input type.
Source§impl<U> From<GenericArray<u8, <U as UniversalHash>::BlockSize>> for Output<U>where
U: UniversalHash,
impl<U> From<GenericArray<u8, <U as UniversalHash>::BlockSize>> for Output<U>where
U: UniversalHash,
Source§fn from(bytes: GenericArray<u8, <U as UniversalHash>::BlockSize>) -> Output<U>
fn from(bytes: GenericArray<u8, <U as UniversalHash>::BlockSize>) -> Output<U>
Converts to this type from the input type.