Skip to main content

wc_AesAuthDecryptFunc

Type Alias wc_AesAuthDecryptFunc 

Source
pub type wc_AesAuthDecryptFunc = Option<unsafe extern "C" fn(aes: *mut Aes, out: *mut byte, in_: *const byte, sz: word32, iv: *const byte, ivSz: word32, authTag: *const byte, authTagSz: word32, authIn: *const byte, authInSz: word32) -> c_int>;

Aliased Type§

pub enum wc_AesAuthDecryptFunc {
    None,
    Some(unsafe extern "C" fn(*mut Aes, *mut u8, *const u8, u32, *const u8, u32, *const u8, u32, *const u8, u32) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut Aes, *mut u8, *const u8, u32, *const u8, u32, *const u8, u32, *const u8, u32) -> i32)

Some value of type T.