Struct blake2::Blake2sMac
source · pub struct Blake2sMac<OutSize>{ /* private fields */ }
Expand description
Blake2s MAC function
Implementations§
source§impl<OutSize> Blake2sMac<OutSize>
impl<OutSize> Blake2sMac<OutSize>
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>
impl<OutSize> Clone for Blake2sMac<OutSize>
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>
impl<OutSize> Debug for Blake2sMac<OutSize>
source§impl<OutSize> FixedOutput for Blake2sMac<OutSize>
impl<OutSize> FixedOutput for Blake2sMac<OutSize>
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>
impl<OutSize> KeyInit for Blake2sMac<OutSize>
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§fn generate_key(
rng: impl CryptoRng + RngCore,
) -> GenericArray<u8, Self::KeySize>
fn generate_key( rng: impl CryptoRng + RngCore, ) -> GenericArray<u8, Self::KeySize>
Generate random key using the provided
CryptoRng
.source§impl<OutSize> KeySizeUser for Blake2sMac<OutSize>
impl<OutSize> KeySizeUser for Blake2sMac<OutSize>
source§impl<OutSize> OutputSizeUser for Blake2sMac<OutSize>
impl<OutSize> OutputSizeUser for Blake2sMac<OutSize>
§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>
impl<OutSize> Update for Blake2sMac<OutSize>
impl<OutSize> MacMarker for Blake2sMac<OutSize>
Auto Trait Implementations§
impl<OutSize> Freeze for Blake2sMac<OutSize>
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> 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Mac for T
impl<T> Mac for T
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