[gnome-shell] networkAgent: add support for SAE secrets



commit 3b5675b79aff6f557cea85520ea5a99a80114b56
Author: Lubomir Rintel <lkundrak v3 sk>
Date:   Fri Oct 4 14:21:25 2019 +0200

    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 2de5128439..517014bf1c 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 });


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]