Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SoftAP running ancient TKIP encryption. iPhones complain. #4805

Closed
EtherFidelity opened this issue Feb 13, 2021 · 2 comments · Fixed by #5122
Closed

SoftAP running ancient TKIP encryption. iPhones complain. #4805

EtherFidelity opened this issue Feb 13, 2021 · 2 comments · Fixed by #5122

Comments

@EtherFidelity
Copy link

Hardware:

Board: ESP-WROOM-32 Dev Board (FCC ID: 2AC7Z-ESPWROOM32)
Core Installation version: 1.0.5-rc6
IDE name: Arduino IDE
Flash Frequency: 80Mhz
PSRAM enabled: N/A
Upload Speed: 115200
Computer OS: Windows 10

Description:

When connecting to a SoftAP created by the sketch below from my iPhone, I receive this message:

Weak Security
WPA/WPA2 (TKIP) is not considered secure.
If this is your Wi-Fi network, configure the router to use WPA2 (AES) or WPA3 security type.

How do I fix this?

Sketch:

#include <WiFi.h>

void setup() {
  WiFi.softAP("Test-AP", "testpass");
}

void loop() {
  // put your main code here, to run repeatedly:

}

Debug Messages:

N/A
@EtherFidelity
Copy link
Author

Bump

@me-no-dev
Copy link
Member

encryption is set here: https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/src/WiFiAP.cpp#L127

options available in this version of esp-idf (v3.3) are here: https://github.com/espressif/arduino-esp32/blob/master/tools/sdk/include/esp32/esp_wifi_types.h#L55-L63

For adding support for other types of encryption, you can post an issue in esp-idf's issue tracker.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants