[][src]Struct gcrypt::mac::Mac

pub struct Mac(_);

Methods

impl Mac[src]

pub unsafe fn from_raw(raw: gcry_mac_hd_t) -> Self[src]

pub fn as_raw(&self) -> gcry_mac_hd_t[src]

pub fn into_raw(self) -> gcry_mac_hd_t[src]

pub fn new(algo: Algorithm) -> Result<Mac>[src]

pub fn with_flags(algo: Algorithm, flags: Flags) -> Result<Mac>[src]

pub fn set_key(&mut self, key: impl AsRef<[u8]>) -> Result<()>[src]

pub fn set_iv(&mut self, iv: impl AsRef<[u8]>) -> Result<()>[src]

pub fn reset(&mut self) -> Result<()>[src]

pub fn update(&mut self, bytes: &[u8]) -> Result<()>[src]

pub fn get_mac(&mut self, buf: &mut [u8]) -> Result<usize>[src]

pub fn verify(&mut self, buf: &[u8]) -> Result<()>[src]

Trait Implementations

impl Debug for Mac[src]

impl Drop for Mac[src]

impl Write 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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.