wc_AesAuthEncryptFunc

Type Alias wc_AesAuthEncryptFunc 

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

Aliased Type§

pub enum wc_AesAuthEncryptFunc {
    None,
    Some(unsafe extern "C" fn(*mut Aes, *mut u8, *const u8, u32, *const u8, u32, *mut 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, *mut u8, u32, *const u8, u32) -> i32)

Some value of type T.