We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e94ea commit aec2635Copy full SHA for aec2635
libraries/WiFi/src/WiFiAP.cpp
@@ -92,6 +92,7 @@ void wifi_softap_config(wifi_config_t *wifi_config, const char * ssid=NULL, cons
92
wifi_config->ap.ssid_len = strlen(ssid);
93
if(password != NULL && password[0] != 0){
94
wifi_config->ap.authmode = authmode;
95
+ wifi_config->ap.pairwise_cipher = WIFI_CIPHER_TYPE_CCMP; // Disable by default enabled insecure TKIP and use just CCMP.
96
snprintf((char*)wifi_config->ap.password, 64, password);
97
}
98
0 commit comments