pub type esp_aes_encrypt_t = Option<unsafe extern "C" fn(ctx: *mut c_void, plain: *const c_uchar, crypt: *mut c_uchar)>;Expand description
@brief Encrypt one AES block callback function
@param ctx Context pointer from aes_encrypt_init() @param plain Plaintext data to be encrypted (16 bytes) @param crypt Buffer for the encrypted data (16 bytes)
Aliased Type§
pub enum esp_aes_encrypt_t {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *mut u8)),
}