Type Alias Tag

Source
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,

Source

pub fn new( bytes: GenericArray<u8, <U as UniversalHash>::BlockSize>, ) -> Output<U>

Create a new Output block.

Source

pub fn into_bytes(self) -> GenericArray<u8, <U as UniversalHash>::BlockSize>

Get the inner GenericArray this type wraps

Trait Implementations

Source§

impl<U> Clone for Output<U>

Source§

fn clone(&self) -> Output<U>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<U> ConstantTimeEq for Output<U>
where U: UniversalHash,

Source§

fn ct_eq(&self, other: &Output<U>) -> Choice

Determine if two items are equal. Read more
Source§

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>

Converts to this type from the input type.
Source§

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>

Converts to this type from the input type.
Source§

impl<U> PartialEq for Output<U>
where U: UniversalHash,

Source§

fn eq(&self, x: &Output<U>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<U> Eq for Output<U>
where U: UniversalHash,