diff options
Diffstat (limited to 'debian/patches/git_wpa_sae.patch')
| -rw-r--r-- | debian/patches/git_wpa_sae.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/debian/patches/git_wpa_sae.patch b/debian/patches/git_wpa_sae.patch deleted file mode 100644 index a951fa64..00000000 --- a/debian/patches/git_wpa_sae.patch +++ /dev/null @@ -1,45 +0,0 @@ -From e36c297fd8c6b1b57cd120739cc5ee8eab57aa08 Mon Sep 17 00:00:00 2001 -From: Beniamino Galvani <bgalvani@redhat.com> -Date: Wed, 9 Oct 2019 11:55:27 +0200 -Subject: [PATCH] supplicant: allow PMF with SAE - -PMF can be used with SAE, allow it. Actually, it is required according -to WPA3 specifications but there are implementations that don't -require it (hostapd can be configured in a such way); so let's not -make it mandatory for WPA3. - -Fixes: 6640fb4b3615 ('supplicant: add support for SAE key management') - -https://gitlab.freedesktop.org/NetworkManager/NetworkManager/issues/257 ---- - src/supplicant/nm-supplicant-config.c | 4 ++-- - src/supplicant/tests/test-supplicant-config.c | 1 - - 2 files changed, 2 insertions(+), 3 deletions(-) - -Index: network-manager-1.20.4/src/supplicant/nm-supplicant-config.c -=================================================================== ---- network-manager-1.20.4.orig/src/supplicant/nm-supplicant-config.c -+++ network-manager-1.20.4/src/supplicant/nm-supplicant-config.c -@@ -881,8 +881,8 @@ nm_supplicant_config_add_setting_wireles - } - } - -- /* Don't try to enable PMF on non-WPA networks */ -- if (!NM_IN_STRSET (key_mgmt, "wpa-eap", "wpa-psk")) -+ /* Don't try to enable PMF on non-WPA/SAE networks */ -+ if (!NM_IN_STRSET (key_mgmt, "wpa-eap", "wpa-psk", "sae")) - pmf = NM_SETTING_WIRELESS_SECURITY_PMF_DISABLE; - - /* Check if we actually support PMF */ -Index: network-manager-1.20.4/src/supplicant/tests/test-supplicant-config.c -=================================================================== ---- network-manager-1.20.4.orig/src/supplicant/tests/test-supplicant-config.c -+++ network-manager-1.20.4/src/supplicant/tests/test-supplicant-config.c -@@ -430,7 +430,6 @@ test_wifi_sae_psk (const char *psk) - NMTST_EXPECT_NM_INFO ("Config: added 'proto' value 'RSN'"); - NMTST_EXPECT_NM_INFO ("Config: added 'pairwise' value 'TKIP CCMP'"); - NMTST_EXPECT_NM_INFO ("Config: added 'group' value 'TKIP CCMP'"); -- NMTST_EXPECT_NM_INFO ("Config: added 'ieee80211w' value '0'"); - config_dict = build_supplicant_config (connection, 1500, 0, TRUE, TRUE); - - g_test_assert_expected_messages (); |