pub enum AlgorithmMac {
HmacSHA1,
HmacSHA256,
HmacSHA512,
}
Expand description
HMAC hashing algorithms
Variants§
HmacSHA1
Read about HMAC in wikipedia
HmacSHA256
Read about HMAC in wikipedia
HmacSHA512
Read about HMAC in wikipedia
Auto Trait Implementations§
impl Freeze for AlgorithmMac
impl RefUnwindSafe for AlgorithmMac
impl Send for AlgorithmMac
impl Sync for AlgorithmMac
impl Unpin for AlgorithmMac
impl UnwindSafe for AlgorithmMac
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