Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
aec2635b
Unverified
Commit
aec2635b
authored
Jun 10, 2021
by
Rotzbua
Committed by
GitHub
Jun 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WifiAP disable insecure TKIP (#5122)
fixes #4805
parent
e7e94ea2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
libraries/WiFi/src/WiFiAP.cpp
libraries/WiFi/src/WiFiAP.cpp
+1
-0
No files found.
libraries/WiFi/src/WiFiAP.cpp
View file @
aec2635b
...
...
@@ -92,6 +92,7 @@ void wifi_softap_config(wifi_config_t *wifi_config, const char * ssid=NULL, cons
wifi_config
->
ap
.
ssid_len
=
strlen
(
ssid
);
if
(
password
!=
NULL
&&
password
[
0
]
!=
0
){
wifi_config
->
ap
.
authmode
=
authmode
;
wifi_config
->
ap
.
pairwise_cipher
=
WIFI_CIPHER_TYPE_CCMP
;
// Disable by default enabled insecure TKIP and use just CCMP.
snprintf
((
char
*
)
wifi_config
->
ap
.
password
,
64
,
password
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment