From: Jouni Malinen Date: Fri, 1 Dec 2017 23:36:43 +0000 (+0200) Subject: WPS: Map GCMP-256 and CCMP-256 to AES encryption type X-Git-Tag: hostap_2_7~736 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=402c8e00b79c865de5ca9ff1db4f51dde110c70c;p=thirdparty%2Fhostap.git WPS: Map GCMP-256 and CCMP-256 to AES encryption type This is needed to allow a credential to be built for GCMP-256/CCMP-256 networks that do not enable GCMP-128/CCMP-128. Signed-off-by: Jouni Malinen --- diff --git a/src/ap/wps_hostapd.c b/src/ap/wps_hostapd.c index 95b40da0f..5ec019971 100644 --- a/src/ap/wps_hostapd.c +++ b/src/ap/wps_hostapd.c @@ -1064,7 +1064,9 @@ int hostapd_init_wps(struct hostapd_data *hapd, if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) wps->auth_types |= WPS_AUTH_WPA2; - if (conf->rsn_pairwise & (WPA_CIPHER_CCMP | WPA_CIPHER_GCMP)) { + if (conf->rsn_pairwise & (WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | + WPA_CIPHER_CCMP_256 | + WPA_CIPHER_GCMP_256)) { wps->encr_types |= WPS_ENCR_AES; wps->encr_types_rsn |= WPS_ENCR_AES; }