You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With commit 293e55c softAP setup with passphrases shorter than 8 characters are rejected strlen(passphrase) < 8.
The old behaviour was to allow an empty passphrase to configure AUTH_OPEN mode.
In a lot of code examples floating around in the internet those empty strings are used so this commit breaks them.
Otherwise, if the new behaviour is desired strlen(passphrase) == 0 on line 109 could be removed.
The text was updated successfully, but these errors were encountered:
sauttefk
changed the title
Commit 293e55c breaks old behaviour of AUTH_OPEN on empty string
Commit 293e55c breaks old behaviour of AUTH_OPEN on empty passphrase string
Apr 5, 2016
With commit 293e55c softAP setup with passphrases shorter than 8 characters are rejected
strlen(passphrase) < 8
.The old behaviour was to allow an empty passphrase to configure AUTH_OPEN mode.
In a lot of code examples floating around in the internet those empty strings are used so this commit breaks them.
Arduino/libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp
Line 96 in 293e55c
I suggest to change line 96, to keep the old behaviour:
Otherwise, if the new behaviour is desired
strlen(passphrase) == 0
on line 109 could be removed.The text was updated successfully, but these errors were encountered: