diff options
author | Robert Marko <robimarko@gmail.com> | 2019-03-14 11:03:16 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-03-21 15:17:21 +0100 |
commit | a8cf037604c4a7f58ff54339b359c62c73d32ad4 (patch) | |
tree | c66b783e7efc2a5be0350b0447dc15cd2c52ab2b | |
parent | 81ac3bce0157f96fbc31cf6e965eecb170e48c88 (diff) |
netifd: wireless: Add support for GCMP cipher
This patch will add support for using GCMP as cipher suite.
This is not a strong cipher but is only one supported by
wil6210 driver in order to have encrypted traffic.
Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r-- | scripts/netifd-wireless.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/netifd-wireless.sh b/scripts/netifd-wireless.sh index 991544e..4c64e25 100644 --- a/scripts/netifd-wireless.sh +++ b/scripts/netifd-wireless.sh @@ -200,6 +200,7 @@ wireless_vif_parse_encryption() { *tkip+aes|*tkip+ccmp|*aes+tkip|*ccmp+tkip) wpa_cipher="CCMP TKIP";; *aes|*ccmp) wpa_cipher="CCMP";; *tkip) wpa_cipher="TKIP";; + *gcmp) wpa_cipher="GCMP";; esac # 802.11n requires CCMP for WPA |