Searched refs:phase1 (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant.conf377 # phase1: Pre-configure Phase 1 (outer authentication) parameters
699 # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters
732 # (these are normally in the phase1 parameter, but can be used also in the
779 # phase1: fast_provisioning option can be used to enable in-line provisioning
912 phase1="peaplabel=1"
1044 phase1="fast_provisioning=1"
1055 phase1="fast_provisioning=1"
1120 phase1="peaplabel=0"
H A Dconfig.h187 * phase1 - Phase 1 (outer authentication) parameters
191 char *phase1; member in struct:wpa_cred
H A Dconfig_file.c654 STR(phase1);
742 if (cred->phase1)
743 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
H A Dinterworking.c1109 if (cred->phase1) {
1110 os_free(ssid->eap.phase1);
1111 ssid->eap.phase1 = os_strdup(cred->phase1);
H A Dconfig.c1593 { STRe(phase1) },
1776 os_free(eap->phase1);
1837 os_free(cred->phase1);
2391 if (os_strcmp(var, "phase1") == 0) {
2392 os_free(cred->phase1);
2393 cred->phase1 = val;
H A Dscan.c61 if (!ssid->eap.phase1)
64 if (os_strstr(ssid->eap.phase1, "pbc=1"))
H A Dwps_supplicant.c281 os_free(ssid->eap.phase1);
282 ssid->eap.phase1 = NULL;
941 wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
984 wpa_config_set(ssid, "phase1", val, 0);
1058 wpa_config_set(ssid, "phase1", val, 0);
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
H A Deap_config.h314 * phase1 - Phase 1 (outer authentication) parameters
369 char *phase1; member in struct:eap_peer_config
H A Deap_peap.c72 const char *phase1)
76 pos = os_strstr(phase1, "peapver=");
84 if (os_strstr(phase1, "peaplabel=1")) {
90 if (os_strstr(phase1, "peap_outer_success=0")) {
94 } else if (os_strstr(phase1, "peap_outer_success=1")) {
98 } else if (os_strstr(phase1, "peap_outer_success=2")) {
104 if (os_strstr(phase1, "crypto_binding=0")) {
107 } else if (os_strstr(phase1, "crypto_binding=1")) {
110 } else if (os_strstr(phase1, "crypto_binding=2")) {
116 if (os_strstr(phase1, "tn
71 eap_peap_parse_phase1(struct eap_peap_data *data, const char *phase1) argument
[all...]
H A Deap_wsc.c136 const char *phase1; local
174 phase1 = eap_get_config_phase1(sm);
175 if (phase1 == NULL) {
176 wpa_printf(MSG_INFO, "EAP-WSC: phase1 configuration data not "
182 pos = os_strstr(phase1, "pin=");
203 pos = os_strstr(phase1, "pbc=1");
209 wpa_printf(MSG_INFO, "EAP-WSC: PIN or PBC not set in phase1 "
215 pos = os_strstr(phase1, "dev_pw_id=");
219 res = eap_wsc_new_ap_settings(&new_ap_settings, phase1);
H A Deap_fast.c114 const char *phase1)
118 pos = os_strstr(phase1, "fast_provisioning=");
125 pos = os_strstr(phase1, "fast_max_pac_list_len=");
134 pos = os_strstr(phase1, "fast_pac_format=binary");
156 if (config && config->phase1 &&
157 eap_fast_parse_phase1(data, config->phase1) < 0) {
113 eap_fast_parse_phase1(struct eap_fast_data *data, const char *phase1) argument
H A Deap_sim.c99 if (config && config->phase1) {
100 char *pos = os_strstr(config->phase1, "sim_min_num_chal=");
116 data->result_ind = os_strstr(config->phase1, "result_ind=1") !=
H A Deap_tls_common.c87 eap_tls_params_flags(params, config->phase1);
134 wpa_printf(MSG_DEBUG, "TLS: using phase1 config options");
248 if (config->phase1 &&
249 os_strstr(config->phase1, "include_tls_length=1")) {
H A Deap.c2068 * eap_get_config_phase1 - Get phase1 data from the network configuration
2070 * Returns: Pointer to the phase1 data or %NULL if not found
2077 return config->phase1;
2084 * Returns: Pointer to the phase1 data or %NULL if not found
2301 if (conf->phase1 == NULL || os_strstr(conf->phase1, "pbc=1") == NULL)
2314 if (conf->phase1 == NULL || os_strstr(conf->phase1, "pin=") == NULL)
H A Deap_aka.c92 const char *phase1 = eap_get_config_phase1(sm); local
104 data->result_ind = phase1 && os_strstr(phase1, "result_ind=1") != NULL;
/freebsd-10.0-release/tools/regression/net80211/tkip/
H A Dtest_tkip.c128 const u_int8_t *phase1; member in struct:ciphertest
255 * Verify: phase1, phase2, frame length, frame contents.
258 if (memcmp(ctx->tx_ttak, t->phase1, t->phase1_len)) {
259 printf("FAIL: encrypt phase1 botch\n");
261 t->phase1, t->phase1_len);
287 * Check reason for failure: phase1, phase2, frame data (ICV).
289 if (memcmp(ctx->rx_ttak, t->phase1, t->phase1_len)) {
290 printf("FAIL: decrypt phase1 botch\n");
292 t->phase1, t->phase1_len);

Completed in 281 milliseconds