Enum parsec_interface::operations::psa_algorithm::Mac   [−][src]
Enumeration of message authentication code algorithms supported.
Variants
FullLength(FullLengthMac)Untruncated MAC algorithm
Truncated MAC algorithm
Fields of Truncated
mac_alg: FullLengthMacThe MAC algorithm to truncate.
mac_length: usizeDesired length of the truncated MAC in bytes.
Implementations
impl Mac[src]
pub fn is_hmac(self) -> bool[src]
Check if the MAC algorithm is a HMAC algorithm, truncated or not
pub fn is_block_cipher_needed(self) -> bool[src]
Check if the MAC algorithm is a construction over a block cipher
Trait Implementations
impl Clone for Mac[src]
impl Copy for Mac[src]
impl Debug for Mac[src]
impl<'de> Deserialize<'de> for Mac[src]
pub fn deserialize<__D>(
    __deserializer: __D
) -> Result<Mac, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, [src]
__deserializer: __D
) -> Result<Mac, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl From<FullLengthMac> for Mac[src]
pub fn from(full_length_mac: FullLengthMac) -> Mac[src]
impl From<Mac> for Algorithm[src]
impl PartialEq<Mac> for Mac[src]
impl Serialize for Mac[src]
pub fn serialize<__S>(
    &self, 
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
    __S: Serializer, [src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralPartialEq for Mac[src]
impl Zeroize for Mac[src]
Auto Trait Implementations
impl RefUnwindSafe for Mac
impl Send for Mac
impl Sync for Mac
impl Unpin for Mac
impl UnwindSafe for Mac
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,