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

  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 38 const struct eap_method *phase2_method; member in struct:eap_peap_data
179 if (data->phase2_priv && data->phase2_method)
180 data->phase2_method->deinit(sm, data->phase2_priv);
225 if (data->phase2_method == NULL || data->phase2_priv == NULL ||
226 data->phase2_method->isKeyAvailable == NULL ||
227 data->phase2_method->getKey == NULL)
230 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
231 (key = data->phase2_method->getKey(sm, data->phase2_priv,
713 data->phase2_method = eap_peer_get_eap_method(
716 if (data->phase2_method) {
    [all...]
eap_ttls.c 34 const struct eap_method *phase2_method; member in struct:eap_ttls_data
128 if (data->phase2_priv && data->phase2_method) {
129 data->phase2_method->deinit(sm, data->phase2_priv);
130 data->phase2_method = NULL;
283 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
305 if (data->tnc_started && data->phase2_method &&
352 data->phase2_method = eap_peer_get_eap_method(
354 if (data->phase2_method) {
356 data->phase2_priv = data->phase2_method->init(sm);
360 if (data->phase2_priv == NULL || data->phase2_method == NULL)
    [all...]
eap_fast.c 38 const struct eap_method *phase2_method; member in struct:eap_fast_data
230 if (data->phase2_priv && data->phase2_method)
231 data->phase2_method->deinit(sm, data->phase2_priv);
332 data->phase2_method =
335 if (data->phase2_method == NULL)
343 data->phase2_priv = data->phase2_method->init(sm);
423 if (data->phase2_priv && data->phase2_method &&
427 data->phase2_method->deinit(sm, data->phase2_priv);
428 data->phase2_method = NULL;
446 data->phase2_method == NULL)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
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";
335 if (data->phase2_priv && data->phase2_method)
336 data->phase2_method->reset(sm, data->phase2_priv);
371 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
460 case PHASE2_METHOD:
775 if (data->phase2_priv && data->phase2_method) {
776 data->phase2_method->reset(sm, data->phase2_priv)
    [all...]
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";
338 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
344 if (data->phase2_method->getKey == NULL)
347 if ((key = data->phase2_method->getKey(sm, data->phase2_priv,
357 data->phase2_method->vendor == EAP_VENDOR_IETF &&
358 data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
506 if (data->phase2_priv && data->phase2_method)
    [all...]
eap_server_peap.c 37 PHASE2_METHOD, PHASE2_SOH,
43 const struct eap_method *phase2_method; member in struct:eap_peap_data
73 case PHASE2_METHOD:
74 return "PHASE2_METHOD";
197 if (data->phase2_priv && data->phase2_method)
198 data->phase2_method->reset(sm, data->phase2_priv);
237 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
241 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
253 data->phase2_method->method != EAP_TYPE_TLV) {
516 case PHASE2_METHOD
    [all...]

Completed in 440 milliseconds