pub unsafe extern "C" fn esp_eap_client_set_pac_file(
    pac_file: *const c_uchar,
    pac_file_len: c_int
) -> esp_err_t
Expand description

@brief Set the PAC (Protected Access Credential) file for EAP-FAST authentication.

EAP-FAST requires a PAC file that contains the client’s credentials.

@attention 1. For files read from the file system, length has to be decremented by 1 byte. @attention 2. Disabling the ESP_WIFI_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST.

@param[in] pac_file Pointer to the PAC file buffer. @param[in] pac_file_len Length of the PAC file buffer.

@return

  • ESP_OK: The PAC file for EAP-FAST authentication was set successfully.