#[repr(u32)]pub enum AVHMACType {
AV_HMAC_MD5 = 0,
AV_HMAC_SHA1 = 1,
AV_HMAC_SHA224 = 2,
AV_HMAC_SHA256 = 3,
AV_HMAC_SHA384 = 4,
AV_HMAC_SHA512 = 5,
}
Expand description
@defgroup lavu_hmac HMAC @ingroup lavu_crypto @{
Variants§
AV_HMAC_MD5 = 0
AV_HMAC_SHA1 = 1
AV_HMAC_SHA224 = 2
AV_HMAC_SHA256 = 3
AV_HMAC_SHA384 = 4
AV_HMAC_SHA512 = 5
Trait Implementations§
Source§impl Clone for AVHMACType
impl Clone for AVHMACType
Source§fn clone(&self) -> AVHMACType
fn clone(&self) -> AVHMACType
Returns a duplicate 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 Debug for AVHMACType
impl Debug for AVHMACType
Source§impl Hash for AVHMACType
impl Hash for AVHMACType
Source§impl PartialEq for AVHMACType
impl PartialEq for AVHMACType
impl Copy for AVHMACType
impl Eq for AVHMACType
impl StructuralPartialEq for AVHMACType
Auto Trait Implementations§
impl Freeze for AVHMACType
impl RefUnwindSafe for AVHMACType
impl Send for AVHMACType
impl Sync for AVHMACType
impl Unpin for AVHMACType
impl UnwindSafe for AVHMACType
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