Struct blake2::Blake2sMac
source · pub struct Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,{ /* private fields */ }
Expand description
Blake2s MAC function
Implementations§
source§impl<OutSize> Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
sourcepub fn new_with_salt_and_personal(
key: &[u8],
salt: &[u8],
persona: &[u8]
) -> Result<Self, InvalidLength>
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 Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + Clone,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> Clone for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + Clone,
LeEq<OutSize, U32>: NonZero,
source§fn clone(&self) -> Blake2sMac<OutSize>
fn clone(&self) -> Blake2sMac<OutSize>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<OutSize> Debug for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> Debug for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
source§impl<OutSize> FixedOutput for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + 'static,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> FixedOutput for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + 'static,
LeEq<OutSize, U32>: NonZero,
source§fn finalize_into(self, out: &mut Output<Self>)
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>
fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>
Retrieve result and consume the hasher instance.
source§impl<OutSize> KeyInit for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> KeyInit for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
source§fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>
fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>
Create new value from variable size key.
source§impl<OutSize> KeySizeUser for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> KeySizeUser for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
source§impl<OutSize> OutputSizeUser for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + 'static,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> OutputSizeUser for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32> + 'static,
LeEq<OutSize, U32>: NonZero,
§type OutputSize = OutSize
type OutputSize = OutSize
Size of the output in bytes.
source§fn output_size() -> usize
fn output_size() -> usize
Return output size in bytes.
source§impl<OutSize> Update for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> Update for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
impl<OutSize> MacMarker for Blake2sMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U32>,
LeEq<OutSize, U32>: NonZero,
Auto Trait Implementations§
impl<OutSize> RefUnwindSafe for Blake2sMac<OutSize>where
OutSize: RefUnwindSafe,
impl<OutSize> Send for Blake2sMac<OutSize>where
OutSize: Send,
impl<OutSize> Sync for Blake2sMac<OutSize>where
OutSize: Sync,
impl<OutSize> Unpin for Blake2sMac<OutSize>where
OutSize: Unpin,
impl<OutSize> UnwindSafe for Blake2sMac<OutSize>where
OutSize: UnwindSafe,
Blanket Implementations§
source§impl<T> Mac for Twhere
T: Update + FixedOutput + MacMarker,
impl<T> Mac for Twhere
T: Update + FixedOutput + MacMarker,
source§fn new(key: &GenericArray<u8, <T as KeySizeUser>::KeySize>) -> Twhere
T: KeyInit,
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,
fn new_from_slice(key: &[u8]) -> Result<T, InvalidLength>where
T: KeyInit,
Create new value from variable size key.
source§fn chain_update(self, data: impl AsRef<[u8]>) -> T
fn chain_update(self, data: impl AsRef<[u8]>) -> T
Process input data in a chained manner.
source§fn finalize_reset(&mut self) -> CtOutput<T>where
T: FixedOutputReset,
fn finalize_reset(&mut self) -> CtOutput<T>where
T: FixedOutputReset,
source§fn verify(
self,
tag: &GenericArray<u8, <T as OutputSizeUser>::OutputSize>
) -> Result<(), MacError>
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_slice(self, tag: &[u8]) -> Result<(), MacError>
fn verify_slice(self, tag: &[u8]) -> Result<(), MacError>
Check truncated tag correctness using all bytes
of calculated tag. Read more