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,
impl<OutSize> Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: 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 Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + Clone,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> Clone for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + Clone, LeEq<OutSize, U64>: NonZero,
source§fn clone(&self) -> Blake2bMac<OutSize>
fn clone(&self) -> Blake2bMac<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 Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> Debug for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,
source§impl<OutSize> FixedOutput for Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + 'static,
LeEq<OutSize, U64>: NonZero,
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>)
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 Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> KeyInit for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: 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 Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> KeySizeUser for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,
source§impl<OutSize> OutputSizeUser for Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + 'static,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> OutputSizeUser for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64> + 'static, LeEq<OutSize, U64>: 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 Blake2bMac<OutSize>where
OutSize: ArrayLength<u8> + IsLessOrEqual<U64>,
LeEq<OutSize, U64>: NonZero,
impl<OutSize> Update for Blake2bMac<OutSize>where OutSize: ArrayLength<u8> + IsLessOrEqual<U64>, LeEq<OutSize, U64>: NonZero,
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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_reset(
&mut self,
tag: &GenericArray<u8, <T as OutputSizeUser>::OutputSize>
) -> Result<(), MacError>where
T: FixedOutputReset,
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>
fn verify_slice(self, tag: &[u8]) -> Result<(), MacError>
Check truncated tag correctness using all bytes
of calculated tag. Read more