diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-09-26 14:36:33 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-09-26 14:40:02 (GMT) |
commit | 61a56c14800922328e4dc29bf4b70ff0ea51c7d3 (patch) | |
tree | 98dd00e2af91340065dcdf9c0765e5d45d22e48f /wpa_supplicant/config_ssid.h | |
parent | 0ad5893a2f1f521d44712cd395e067ccf0a397c3 (diff) | |
download | hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.zip hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.tar.gz hostap-61a56c14800922328e4dc29bf4b70ff0ea51c7d3.tar.bz2 |
Add group_mgmt network parameter for PMF cipher selection
The new wpa_supplicant network parameter group_mgmt can be used to
specify which group management ciphers (AES-128-CMAC, BIP-GMAC-128,
BIP-GMAC-256, BIP-CMAC-256) are allowed for the network. If not
specified, the current behavior is maintained (i.e., follow what the AP
advertises). The parameter can list multiple space separate ciphers.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant/config_ssid.h')
-rw-r--r-- | wpa_supplicant/config_ssid.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/wpa_supplicant/config_ssid.h b/wpa_supplicant/config_ssid.h index 81f64a5..737ef42 100644 --- a/wpa_supplicant/config_ssid.h +++ b/wpa_supplicant/config_ssid.h @@ -210,6 +210,15 @@ struct wpa_ssid { int group_cipher; /** + * group_mgmt_cipher - Bitfield of allowed group management ciphers + * + * This is a bitfield of WPA_CIPHER_AES_128_CMAC and WPA_CIPHER_BIP_* + * values. If 0, no constraint is used for the cipher, i.e., whatever + * the AP uses is accepted. + */ + int group_mgmt_cipher; + + /** * key_mgmt - Bitfield of allowed key management protocols * * WPA_KEY_MGMT_* |