espressif / ESP8266_RTOS_SDK

Latest ESP8266 SDK based on FreeRTOS, esp-idf style.
http://bbs.espressif.com
Apache License 2.0
3.3k stars 1.56k forks source link

WPA3-PSK Access Point? (GIT8266O-828) #1252

Open Flying-Toast opened 11 months ago

Flying-Toast commented 11 months ago

Does softAP support WPA3? When I try setting wifi_config.authmode = WIFI_AUTH_WPA3_PSK, setting the config fails with esp_wifi_set_config(ESP_IF_WIFI_AP, &wifi_config) returning 0x02.

Olewojt commented 1 month ago

Most probably you passed too short password to wifi_config structure. I couldn't find any official WPA3 PSK specification document, but as far as I know WPA2 requires password length ranging from 8 to 63 characters and WPA3 most probably inherits this setting.

Try longer password without special characters.