/external/wpa_supplicant_8/hostapd/ |
hostapd.eap_user_sqlite | 5 phase2 INTEGER 13 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 14 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"
|
/cts/tests/tests/net/src/android/net/wifi/cts/ |
WifiEnterpriseConfigTest.java | 23 import android.net.wifi.WifiEnterpriseConfig.Phase2; 59 assertTrue(config.getPhase2Method() == Phase2.NONE); 60 config.setPhase2Method(Phase2.PAP); 61 assertTrue(config.getPhase2Method() == Phase2.PAP); 62 config.setPhase2Method(Phase2.MSCHAP); 63 assertTrue(config.getPhase2Method() == Phase2.MSCHAP); 64 config.setPhase2Method(Phase2.MSCHAPV2); 65 assertTrue(config.getPhase2Method() == Phase2.MSCHAPV2); 66 config.setPhase2Method(Phase2.GTC); 67 assertTrue(config.getPhase2Method() == Phase2.GTC) [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/assets/ |
accesspoints.xml | 34 <phase2>MSCHAPV2</phase2>
|
/external/wpa_supplicant_8/src/ap/ |
eap_user_db.c | 132 size_t identity_len, int phase2) 162 hapd->tmp_eap_user.phase2 = phase2; 177 "identity='%s' AND phase2=%d;", id_str, phase2); 185 if (user == NULL && !phase2) { 213 size_t identity_len, int phase2) 242 if (!phase2 && user->identity == NULL) { 247 if (user->phase2 == !!phase2 && user->wildcard_prefix & [all...] |
authsrv.c | 53 size_t identity_len, int phase2, 59 eap_user = hostapd_get_eap_user(ctx, identity, identity_len, phase2);
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
AccessPointParserHelper.java | 47 * security, eap, phase2, identity, password, anonymousidentity, cacert, usercert, 58 * <phase2>MSCHAP2</phase2> 112 boolean phase2 = false; 140 if (tagName.equalsIgnoreCase("phase2")) { 141 phase2 = true; 213 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.NONE); 264 if (phase2) { 267 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.PAP); 269 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.MSCHAP) [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiEnterpriseConfig.java | 81 private static final String PHASE2_KEY = "phase2"; 237 public static final class Phase2 { 252 private Phase2() {} 300 * @param phase2Method is the inner authentication method and can be one of {@link Phase2#NONE}, 301 * {@link Phase2#PAP}, {@link Phase2#MSCHAP}, {@link Phase2#MSCHAPV2}, 302 * {@link Phase2#GTC} 303 * @throws IllegalArgumentException on an invalid phase2 method 308 case Phase2.NONE 642 String phase2 = mFields.get(PHASE2_KEY); local [all...] |
/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 | 33 int phase2; member in struct:eap_user 80 int phase2, struct eap_user *user);
|
eap_server_peap.c | 511 "starting Phase2"); 914 wpa_printf(MSG_DEBUG, "EAP-PEAP: %s - Phase2 not " 924 wpa_hexdump(MSG_DEBUG, "EAP-PEAP: Phase2 type Nak'ed; " 943 wpa_printf(MSG_DEBUG, "EAP-PEAP: Phase2 check() asked to " 951 wpa_printf(MSG_DEBUG, "EAP-PEAP: Phase2 method is in " 961 wpa_printf(MSG_DEBUG, "EAP-PEAP: Phase2 method failed"); 973 wpa_printf(MSG_DEBUG, "EAP-PEAP: Phase2 getKey " 986 wpa_hexdump_ascii(MSG_DEBUG, "EAP_PEAP: Phase2 " 1176 wpa_printf(MSG_DEBUG, "EAP-PEAPv2: Phase1 done, include first Phase2 " [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
networkconfig.cpp | 311 char phase2[32]; local 312 phase2[0] = '\0'; 315 snprintf(phase2, sizeof(phase2), "auth=%s", 320 snprintf(phase2, sizeof(phase2), "autheap=%s", 324 snprintf(phase2, sizeof(phase2), "auth=%s", 329 snprintf(phase2, sizeof(phase2), "auth=%s" [all...] |
/external/wpa_supplicant_8/wpa_supplicant/tests/ |
link_test.c | 74 size_t identity_len, int phase2)
|
/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 | 108 eap_tls_params_flags(params, config->phase2); 115 struct eap_peer_config *config, int phase2) 130 if (phase2) { 131 wpa_printf(MSG_DEBUG, "TLS: using phase2 config options"); 233 data->phase2 = sm->init_phase2; 236 if (eap_tls_params_from_conf(sm, data, ¶ms, config, data->phase2) < 244 if (data->phase2) { 998 * @prefix: 'phase2' configuration prefix, e.g., "auth=" 1004 * for Phase2 authentication. 1016 if (config == NULL || config->phase2 == NULL [all...] |
eap_ttls.c | 82 if (config && config->phase2) { 83 if (os_strstr(config->phase2, "autheap=")) { 86 } else if (os_strstr(config->phase2, "auth=MSCHAPV2")) { 89 } else if (os_strstr(config->phase2, "auth=MSCHAP")) { 92 } else if (os_strstr(config->phase2, "auth=PAP")) { 95 } else if (os_strstr(config->phase2, "auth=CHAP")) { 100 wpa_printf(MSG_DEBUG, "EAP-TTLS: Phase2 type: %s", selected); 587 * notification, so assume that Phase2 succeeds. */ 641 * so assume that Phase2 succeeds. */ 717 * notification, so assume that Phase2 succeeds. * [all...] |
/external/wpa_supplicant_8/src/eapol_auth/ |
eapol_auth_sm.h | 65 int phase2, struct eap_user *user);
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiConfigController.java | 36 import android.net.wifi.WifiEnterpriseConfig.Phase2; 85 /* Phase2 methods supported by PEAP are limited */ 87 /* Full list of phase2 methods */ 385 // PEAP supports limited phase2 values 390 config.enterpriseConfig.setPhase2Method(Phase2.NONE); 393 config.enterpriseConfig.setPhase2Method(Phase2.MSCHAPV2); 396 config.enterpriseConfig.setPhase2Method(Phase2.GTC); 399 Log.e(TAG, "Unknown phase2 method" + phase2Method); 587 mPhase2Spinner = (Spinner) mView.findViewById(R.id.phase2); 606 case Phase2.NONE [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
FFTFrame.cpp | 134 double phase2 = arg(c2); local 137 double deltaPhase2 = phase2 - lastPhase2; 139 lastPhase2 = phase2;
|
/frameworks/base/docs/html/sdk/api_diff/18/changes/ |
pkg_android.net.wifi.html | 98 <A NAME="WifiEnterpriseConfig.Phase2"></A> 99 <nobr><A HREF="../../../../reference/android/net/wifi/WifiEnterpriseConfig.Phase2.html" target="_top"><code>WifiEnterpriseConfig.Phase2</code></A></nobr>
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.in | 50 phase2 15 sec;
|
/external/llvm/utils/release/ |
test-release.sh | 367 llvmCore_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.obj 368 llvmCore_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.install 369 llvmCore_de_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.obj 370 llvmCore_de_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.install 371 dragonegg_phase2_objdir=$BuildDir/Phase2/$Flavor/DragonEgg-$Release-$RC.obj 447 # Compare .o files between Phase2 and Phase3 and report which ones 453 p3=`echo $o | sed -e 's,Phase2,Phase3,'` 501 # Compare .o files between Phase2 and Phase3 and report which ones differ. 506 p3=`echo $o | sed -e 's,Phase2,Phase3,'`
|
/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,
|
/external/wpa_supplicant_8/src/radius/ |
radius_server.h | 170 * @phase2: Whether this is for Phase 2 identity 180 int phase2, struct eap_user *user);
|