Struct blake2::Blake2bMac

source ·
pub struct Blake2bMac<OutSize>where
    OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
    LeEq<OutSize, U64>: NonZero,{ /* private fields */ }
Expand description

Blake2b MAC function

Implementations§

source§

impl<OutSize> Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

source

pub fn new_with_salt_and_personal( key: &[u8], salt: &[u8], persona: &[u8] ) -> Result<Self, InvalidLength>

Create new instance using provided key, salt, and persona.

Key length should not be bigger than block size, salt and persona length should not be bigger than quarter of block size. If any of those conditions is false the method will return an error.

Trait Implementations§

source§

impl<OutSize> Clone for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + Clone, LeEq<OutSize, U64>: NonZero,

source§

fn clone(&self) -> Blake2bMac<OutSize>

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<OutSize> Debug for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<OutSize> FixedOutput for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + 'static, LeEq<OutSize, U64>: NonZero,

source§

fn finalize_into(self, out: &mut Output<Self>)

Consume value and write result into provided array.
source§

fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and consume the hasher instance.
source§

impl<OutSize> KeyInit for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

source§

fn new(key: &Key<Self>) -> Self

Create new value from fixed size key.
source§

fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>

Create new value from variable size key.
source§

impl<OutSize> KeySizeUser for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

§

type KeySize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>

Key size in bytes.
source§

fn key_size() -> usize

Return key size in bytes.
source§

impl<OutSize> OutputSizeUser for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + 'static, LeEq<OutSize, U64>: NonZero,

§

type OutputSize = OutSize

Size of the output in bytes.
source§

fn output_size() -> usize

Return output size in bytes.
source§

impl<OutSize> Update for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

source§

fn update(&mut self, input: &[u8])

Update state using the provided data.
source§

fn chain(self, data: impl AsRef<[u8]>) -> Selfwhere Self: Sized,

Digest input data in a chained manner.
source§

impl<OutSize> MacMarker for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,

Auto Trait Implementations§

§

impl<OutSize> RefUnwindSafe for Blake2bMac<OutSize>where OutSize: RefUnwindSafe,

§

impl<OutSize> Send for Blake2bMac<OutSize>where OutSize: Send,

§

impl<OutSize> Sync for Blake2bMac<OutSize>where OutSize: Sync,

§

impl<OutSize> Unpin for Blake2bMac<OutSize>where OutSize: Unpin,

§

impl<OutSize> UnwindSafe for Blake2bMac<OutSize>where OutSize: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Mac for Twhere T: Update + FixedOutput + MacMarker,

source§

fn new(key: &GenericArray<u8, <T as KeySizeUser>::KeySize>) -> Twhere T: KeyInit,

Create new value from fixed size key.
source§

fn new_from_slice(key: &[u8]) -> Result<T, InvalidLength>where T: KeyInit,

Create new value from variable size key.
source§

fn update(&mut self, data: &[u8])

Update state using the provided data.
source§

fn chain_update(self, data: impl AsRef<[u8]>) -> T

Process input data in a chained manner.
source§

fn finalize(self) -> CtOutput<T>

Obtain the result of a Mac computation as a CtOutput and consume Mac instance.
source§

fn finalize_reset(&mut self) -> CtOutput<T>where T: FixedOutputReset,

Obtain the result of a Mac computation as a CtOutput and reset Mac instance.
source§

fn reset(&mut self)where T: Reset,

Reset MAC instance to its initial state.
source§

fn verify( self, tag: &GenericArray<u8, <T as OutputSizeUser>::OutputSize> ) -> Result<(), MacError>

Check if tag/code value is correct for the processed input.
source§

fn verify_reset( &mut self, tag: &GenericArray<u8, <T as OutputSizeUser>::OutputSize> ) -> Result<(), MacError>where T: FixedOutputReset,

Check if tag/code value is correct for the processed input and reset Mac instance.
source§

fn verify_slice(self, tag: &[u8]) -> Result<(), MacError>

Check truncated tag correctness using all bytes of calculated tag. Read more
source§

fn verify_slice_reset(&mut self, tag: &[u8]) -> Result<(), MacError>where T: FixedOutputReset,

Check truncated tag correctness using all bytes of calculated tag and reset Mac instance. Read more
source§

fn verify_truncated_left(self, tag: &[u8]) -> Result<(), MacError>

Check truncated tag correctness using left side bytes (i.e. tag[..n]) of calculated tag. Read more
source§

fn verify_truncated_right(self, tag: &[u8]) -> Result<(), MacError>

Check truncated tag correctness using right side bytes (i.e. tag[n..]) of calculated tag. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.