[][src]Type Definition esp_idf_bindgen::esp_aes_encrypt_t

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

@brief Encrypt one AES block

@ctx: Context pointer from aes_encrypt_init() @plain: Plaintext data to be encrypted (16 bytes) @crypt: Buffer for the encrypted data (16 bytes)