pub unsafe extern "C" fn esp_aes_crypt_ecb(
    ctx: *mut esp_aes_context,
    mode: c_int,
    input: *const c_uchar,
    output: *mut c_uchar
) -> c_int
Expand description

\brief AES-ECB block encryption/decryption

\param ctx AES context \param mode AES_ENCRYPT or AES_DECRYPT \param input 16-byte input block \param output 16-byte output block

\return 0 if successful