Home
last modified time | relevance | path

Searched refs:phase2_auth (Results 1 – 5 of 5) sorted by relevance

/hostap-latest/src/eap_peer/
Deap_peap.c70 enum { NO_AUTH, FOR_INITIAL, ALWAYS } phase2_auth; member
119 data->phase2_auth = NO_AUTH; in eap_peap_parse_phase1()
123 data->phase2_auth = FOR_INITIAL; in eap_peap_parse_phase1()
127 data->phase2_auth = ALWAYS; in eap_peap_parse_phase1()
159 data->phase2_auth = FOR_INITIAL; in eap_peap_init()
475 if ((data->phase2_auth == ALWAYS || in peap_phase2_sufficient()
476 (data->phase2_auth == FOR_INITIAL && in peap_phase2_sufficient()
1237 data->phase2_success && data->phase2_auth != ALWAYS; in eap_peap_has_reauth_data()
Deap_ttls.c69 enum { NO_AUTH, FOR_INITIAL, ALWAYS } phase2_auth; member
77 data->phase2_auth = NO_AUTH; in eap_ttls_parse_phase1()
81 data->phase2_auth = FOR_INITIAL; in eap_ttls_parse_phase1()
85 data->phase2_auth = ALWAYS; in eap_ttls_parse_phase1()
106 data->phase2_auth = FOR_INITIAL; in eap_ttls_init()
1733 data->phase2_success && data->phase2_auth != ALWAYS; in eap_ttls_has_reauth_data()
/hostap-latest/tests/hwsim/
Dtest_ieee8021x.py348 def run_ieee8021x_reauth_peap(dev, apdev, phase2_auth): argument
359 phase1 = "phase2_auth=2" if phase2_auth else ""
374 if phase2_auth and reused:
376 if not phase2_auth and not reused:
Dtest_ap_eap.py6518 def run_eap_ttls_pap_session_resumption(dev, apdev, phase2_auth): argument
6523 phase1 = "phase2_auth=2" if phase2_auth else ""
6539 if phase2_auth and reused:
6541 if not phase2_auth and not reused:
6668 def run_eap_peap_session_resumption(dev, apdev, phase2_auth): argument
6674 phase1 = "phase2_auth=2" if phase2_auth else ""
6690 if phase2_auth and reused:
6692 if not phase2_auth and not reused:
/hostap-latest/wpa_supplicant/
DChangeLog39 * EAP-PEAP: require Phase 2 authentication by default (phase2_auth=1)