[][src]Type Definition esp_idf_bindgen::esp_aes_decrypt_t

type esp_aes_decrypt_t = Option<unsafe extern "C" fn(ctx: *mut c_void, crypt: *const c_uchar, plain: *mut c_uchar)>;

@brief Decrypt one AES block

@ctx: Context pointer from aes_encrypt_init() @crypt: Encrypted data (16 bytes) @plain: Buffer for the decrypted data (16 bytes)