HomeSort by relevance Sort by last modified time
    Searched refs:phase2_method (Results 1 - 6 of 6) sorted by null

  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 37 const struct eap_method *phase2_method; member in struct:eap_peap_data
183 if (data->phase2_priv && data->phase2_method)
184 data->phase2_method->deinit(sm, data->phase2_priv);
230 if (data->phase2_method == NULL || data->phase2_priv == NULL ||
231 data->phase2_method->isKeyAvailable == NULL ||
232 data->phase2_method->getKey == NULL)
235 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
236 (key = data->phase2_method->getKey(sm, data->phase2_priv,
699 data->phase2_method = eap_peer_get_eap_method(
702 if (data->phase2_method) {
    [all...]
eap_fast.c 38 const struct eap_method *phase2_method; member in struct:eap_fast_data
237 if (data->phase2_priv && data->phase2_method)
238 data->phase2_method->deinit(sm, data->phase2_priv);
347 data->phase2_method =
350 if (data->phase2_method == NULL)
358 data->phase2_priv = data->phase2_method->init(sm);
438 if (data->phase2_priv && data->phase2_method &&
442 data->phase2_method->deinit(sm, data->phase2_priv);
443 data->phase2_method = NULL;
461 data->phase2_method == NULL)
    [all...]
eap_ttls.c 34 const struct eap_method *phase2_method; member in struct:eap_ttls_data
172 if (data->phase2_priv && data->phase2_method) {
173 data->phase2_method->deinit(sm, data->phase2_priv);
174 data->phase2_method = NULL;
346 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
368 if (data->tnc_started && data->phase2_method &&
415 data->phase2_method = eap_peer_get_eap_method(
417 if (data->phase2_method) {
419 data->phase2_priv = data->phase2_method->init(sm);
423 if (data->phase2_priv == NULL || data->phase2_method == NULL)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_fast.c 34 START, PHASE1, PHASE2_START, PHASE2_ID, PHASE2_METHOD,
39 const struct eap_method *phase2_method; member in struct:eap_fast_data
86 case PHASE2_METHOD:
87 return "PHASE2_METHOD";
342 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
348 if (data->phase2_method->getKey == NULL)
351 if ((key = data->phase2_method->getKey(sm, data->phase2_priv,
361 data->phase2_method->vendor == EAP_VENDOR_IETF &&
362 data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
511 if (data->phase2_priv && data->phase2_method)
    [all...]
eap_server_peap.c 36 PHASE2_METHOD, PHASE2_SOH,
42 const struct eap_method *phase2_method; member in struct:eap_peap_data
72 case PHASE2_METHOD:
73 return "PHASE2_METHOD";
200 if (data->phase2_priv && data->phase2_method)
201 data->phase2_method->reset(sm, data->phase2_priv);
240 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
244 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
254 data->phase2_method->method != EAP_TYPE_TLV) {
531 case PHASE2_METHOD
    [all...]
eap_server_ttls.c 30 START, PHASE1, PHASE2_START, PHASE2_METHOD,
35 const struct eap_method *phase2_method; member in struct:eap_ttls_data
54 case PHASE2_METHOD:
55 return "PHASE2_METHOD";
364 if (data->phase2_priv && data->phase2_method)
365 data->phase2_method->reset(sm, data->phase2_priv);
400 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
489 case PHASE2_METHOD:
832 if (data->phase2_priv && data->phase2_method) {
833 data->phase2_method->reset(sm, data->phase2_priv)
    [all...]

Completed in 434 milliseconds