pub type esp_aes_decrypt_init_t = Option<unsafe extern "C" fn(key: *const c_uchar, len: c_uint) -> *mut c_void>;
Expand description

@brief Initialize AES for decryption

@key: Decryption key @len: Key length in bytes (usually 16, i.e., 128 bits) Returns: Pointer to context data or %NULL on failure

Aliased Type§

enum esp_aes_decrypt_init_t {
    None,
    Some(unsafe extern "C" fn(_: *const u8, _: u32) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const u8, _: u32) -> *mut c_void)

Some value of type T.