/external/wpa_supplicant_8/hostapd/ |
hostapd.eap_user_sqlite | 6 phase2 INTEGER 14 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 15 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2','password',1);
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
ieee8021x.conf | 9 phase2="auth=MSCHAPV2"
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
WifiConfigurationHelper.java | 111 * @param phase2 The phase 2 method or null 119 Integer phase2, String identity, String anonymousIdentity, String caCert, 128 if (phase2 == null) phase2 = WifiEnterpriseConfig.Phase2.NONE; 136 config.enterpriseConfig.setPhase2Method(phase2); 161 * "password" must also be provided. If EAP is selected, then the fiels "eap", "phase2", 212 Integer phase2 = null; local 213 if (jsonConfig.has("phase2")) { 214 phase2 = getPhase2(jsonConfig.getString("phase2")) [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/android/net/wifi/ |
WifiEnterpriseConfigTest.java | 24 import android.net.wifi.WifiEnterpriseConfig.Phase2; 164 // Initially select an EAP method that supports an phase2. 166 mEnterpriseConfig.setPhase2Method(Phase2.MSCHAPV2); 170 // Change the EAP method to another type which supports a phase2. 175 // Change the EAP method to TLS which does not support a phase2. 180 /** Verfies that the EAP inner method is reset when we switch phase2 to NONE */ 183 // Initially select an EAP method that supports an phase2. 185 mEnterpriseConfig.setPhase2Method(Phase2.MSCHAPV2); 189 // Change the phase2 method to NONE and ensure the value is cleared. 190 mEnterpriseConfig.setPhase2Method(Phase2.NONE) [all...] |
/external/wpa_supplicant_8/src/ap/ |
eap_user_db.c | 134 size_t identity_len, int phase2) 170 hapd->tmp_eap_user.phase2 = phase2; 184 "SELECT * FROM users WHERE identity='%s' AND phase2=%d;", 185 id_str, phase2); 195 if (user == NULL && !phase2) { 225 size_t identity_len, int phase2) 254 if (!phase2 && user->identity == NULL) { 259 if (user->phase2 == !!phase2 && user->wildcard_prefix & [all...] |
/external/wpa_supplicant_8/hs20/server/ |
sql.txt | 42 phase2 INTEGER,
|
sql-example.txt | 15 INSERT INTO users(identity,realm,methods,password,phase2,shared) VALUES('free','example.com','TTLS-MSCHAPV2','free',1,1);
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_tls_common.h | 42 * phase2 - Whether this TLS connection is used in EAP phase 2 (tunnel) 44 int phase2; member in struct:eap_ssl_data
|
eap.h | 34 int phase2; member in struct:eap_user 97 int phase2, struct eap_user *user);
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiEnterpriseConfig.java | 50 public static final String PHASE2_KEY = "phase2"; 141 private int mPhase2Method = Phase2.NONE; 316 public static final class Phase2 { 333 private Phase2() {} 396 if (mEapMethod != Eap.TLS && mPhase2Method != Phase2.NONE) { 397 boolean is_autheap = mEapMethod == Eap.TTLS && mPhase2Method == Phase2.GTC; 398 String prefix = is_autheap ? Phase2.AUTHEAP_PREFIX : Phase2.AUTH_PREFIX; 399 String value = convertToQuotedString(prefix + Phase2.strings[mPhase2Method]); 401 } else if (mPhase2Method == Phase2.NONE) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
networkconfig.cpp | 312 char phase2[32]; local 313 phase2[0] = '\0'; 316 snprintf(phase2, sizeof(phase2), "auth=%s", 321 snprintf(phase2, sizeof(phase2), "autheap=%s", 325 snprintf(phase2, sizeof(phase2), "auth=%s", 330 snprintf(phase2, sizeof(phase2), "auth=%s" [all...] |
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiEnterpriseTest.py | 82 Ent.PHASE2: EapPhase2.MSCHAPV2, 100 Ent.PHASE2: EapPhase2.MSCHAPV2, 184 a different phase2 auth type. 198 c[Ent.PHASE2] = phase2_type 321 if Ent.PHASE2 in config: 322 name += "-{}".format(config[Ent.PHASE2].name) 350 EAP-PEAP with different phase2 types. 351 EAP-TTLS with different phase2 types. 408 EAP-TTLS with MSCHAPV2 as phase2.
|
WifiEnterpriseRoamingTest.py | 66 Ent.PHASE2: EapPhase2.MSCHAPV2, 82 Ent.PHASE2: EapPhase2.MSCHAPV2, 156 if Ent.PHASE2 in config: 157 name += "-{}".format(config[Ent.PHASE2].name)
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap_tls_common.h | 52 * phase2 - Whether this TLS connection is used in EAP phase 2 (tunnel) 54 int phase2; member in struct:eap_ssl_data
|
eap_tls_common.c | 132 eap_tls_params_flags(params, config->phase2); 139 struct eap_peer_config *config, int phase2) 154 if (phase2) { 155 wpa_printf(MSG_DEBUG, "TLS: using phase2 config options"); 262 data->phase2 = sm->init_phase2; 265 if (eap_tls_params_from_conf(sm, data, ¶ms, config, data->phase2) < 273 if (data->phase2) { 999 * @prefix: 'phase2' configuration prefix, e.g., "auth=" 1005 * for Phase2 authentication. 1017 if (config == NULL || config->phase2 == NULL [all...] |
/external/vboot_reference/tests/ |
vb2_api_tests.c | 157 TEST_SUCC(vb2api_fw_phase2(&cc), "phase2 good"); 167 TEST_EQ(vb2api_fw_phase2(&cc), VB2_ERROR_MOCK, "phase2 tpm clear"); 173 TEST_EQ(vb2api_fw_phase2(&cc), VB2_ERROR_MOCK, "phase2 slot");
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/ |
Credential.java | 203 /* keep this table in sync with WifiEnterpriseConfig.Phase2 enum */ 206 case WifiEnterpriseConfig.Phase2.PAP: 209 case WifiEnterpriseConfig.Phase2.MSCHAP: 212 case WifiEnterpriseConfig.Phase2.MSCHAPV2: 216 throw new IOException("TTLS phase2 method " +
|
/frameworks/base/packages/Osu/src/com/android/configparse/ |
ConfigBuilder.java | 248 return WifiEnterpriseConfig.Phase2.PAP; 250 return WifiEnterpriseConfig.Phase2.MSCHAP; 252 return WifiEnterpriseConfig.Phase2.MSCHAPV2;
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.in | 50 phase2 15 sec;
|
/external/wpa_supplicant_8/src/eapol_auth/ |
eapol_auth_sm.h | 71 int phase2, struct eap_user *user);
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiConfigController.java | 35 import android.net.wifi.WifiEnterpriseConfig.Phase2; 109 /* Phase2 methods supported by PEAP are limited */ 111 /* Full list of phase2 methods */ 515 // PEAP supports limited phase2 values 520 config.enterpriseConfig.setPhase2Method(Phase2.NONE); 523 config.enterpriseConfig.setPhase2Method(Phase2.MSCHAPV2); 526 config.enterpriseConfig.setPhase2Method(Phase2.GTC); 529 Log.e(TAG, "Unknown phase2 method" + phase2Method); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
filecmp.py | 138 def phase2(self): # Distinguish files, directories, funnies member in class:dircmp 231 common_dirs = phase2, common_files=phase2, common_funny=phase2,
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
filecmp.py | 138 def phase2(self): # Distinguish files, directories, funnies member in class:dircmp 231 common_dirs = phase2, common_files=phase2, common_funny=phase2,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
filecmp.py | 138 def phase2(self): # Distinguish files, directories, funnies member in class:dircmp 231 common_dirs = phase2, common_files=phase2, common_funny=phase2,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
filecmp.py | 138 def phase2(self): # Distinguish files, directories, funnies member in class:dircmp 231 common_dirs = phase2, common_files=phase2, common_funny=phase2,
|