diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-10-09 22:50:50 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-10-14 13:57:15 +0200 |
commit | 4c3fae4adcd41f43cf734e4d07a457b111a3d864 (patch) | |
tree | fd869ac36b6df6bae6631e0b87da06668ee0f756 /package/network/services/hostapd/src | |
parent | 18c6c93a3b83831a1e7d7d80c22c477412c56cb4 (diff) | |
download | upstream-4c3fae4adcd41f43cf734e4d07a457b111a3d864.tar.gz upstream-4c3fae4adcd41f43cf734e4d07a457b111a3d864.tar.bz2 upstream-4c3fae4adcd41f43cf734e4d07a457b111a3d864.zip |
hostapd: Add WPA-EAP-SUITE-B-192 (WPA3-Enterprise)
This adds support for the WPA3-Enterprise mode authentication.
The settings for the WPA3-Enterpriese mode are defined in
WPA3_Specification_v1.0.pdf. This mode also requires ieee80211w and
guarantees at least 192 bit of security.
This does not increase the ipkg size by a significant size.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/network/services/hostapd/src')
-rw-r--r-- | package/network/services/hostapd/src/src/utils/build_features.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/network/services/hostapd/src/src/utils/build_features.h b/package/network/services/hostapd/src/src/utils/build_features.h index 4013ae7b30..abebecb570 100644 --- a/package/network/services/hostapd/src/src/utils/build_features.h +++ b/package/network/services/hostapd/src/src/utils/build_features.h @@ -35,6 +35,10 @@ static inline int has_feature(const char *feat) if (!strcmp(feat, "owe")) return 1; #endif +#ifdef CONFIG_SUITEB192 + if (!strcmp(feat, "suiteb192")) + return 1; +#endif return 0; } |