From 3b5675b79aff6f557cea85520ea5a99a80114b56 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Fri, 4 Oct 2019 14:21:25 +0200 Subject: [PATCH] networkAgent: add support for SAE secrets NetworkManager supports "WPA3 Personal" networks for some time now, they use the SAE authentication. Add support for it alongside other password-based mechanisms. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/751 --- js/ui/components/networkAgent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/components/networkAgent.js b/js/ui/components/networkAgent.js index 2de512843..517014bf1 100644 --- a/js/ui/components/networkAgent.js +++ b/js/ui/components/networkAgent.js @@ -213,6 +213,7 @@ class NetworkSecretDialog extends ModalDialog.ModalDialog { // First the easy ones case 'wpa-none': case 'wpa-psk': + case 'sae': secrets.push({ label: _("Password: "), key: 'psk', value: wirelessSecuritySetting.psk || '', validate: this._validateWpaPsk, password: true });