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

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_peap.c 42 PHASE2_METHOD, PHASE2_SOH,
48 const struct eap_method *phase2_method; member in struct:eap_peap_data
78 case PHASE2_METHOD:
79 return "PHASE2_METHOD";
202 if (data->phase2_priv && data->phase2_method)
203 data->phase2_method->reset(sm, data->phase2_priv);
242 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
246 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
258 data->phase2_method->method != EAP_TYPE_TLV) {
515 case PHASE2_METHOD
    [all...]
eap_fast.c 39 START, PHASE1, PHASE2_START, PHASE2_ID, PHASE2_METHOD,
44 const struct eap_method *phase2_method; member in struct:eap_fast_data
91 case PHASE2_METHOD:
92 return "PHASE2_METHOD";
343 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
349 if (data->phase2_method->getKey == NULL)
352 if ((key = data->phase2_method->getKey(sm, data->phase2_priv,
362 data->phase2_method->vendor == EAP_VENDOR_IETF &&
363 data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
511 if (data->phase2_priv && data->phase2_method)
    [all...]
eap_ttls.c 45 START, PHASE1, PHASE2_START, PHASE2_METHOD,
51 const struct eap_method *phase2_method; member in struct:eap_ttls_data
71 case PHASE2_METHOD:
72 return "PHASE2_METHOD";
418 if (data->phase2_priv && data->phase2_method)
419 data->phase2_method->reset(sm, data->phase2_priv);
456 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
573 case PHASE2_METHOD:
944 if (data->phase2_priv && data->phase2_method) {
945 data->phase2_method->reset(sm, data->phase2_priv)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
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...]
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_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:
768 if (data->phase2_priv && data->phase2_method) {
769 data->phase2_method->reset(sm, data->phase2_priv)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 38 const struct eap_method *phase2_method; member in struct:eap_fast_data
228 if (data->phase2_priv && data->phase2_method)
229 data->phase2_method->deinit(sm, data->phase2_priv);
329 data->phase2_method =
332 if (data->phase2_method == NULL)
340 data->phase2_priv = data->phase2_method->init(sm);
420 if (data->phase2_priv && data->phase2_method &&
424 data->phase2_method->deinit(sm, data->phase2_priv);
425 data->phase2_method = NULL;
443 data->phase2_method == NULL)
    [all...]
eap_peap.c 38 const struct eap_method *phase2_method; member in struct:eap_peap_data
177 if (data->phase2_priv && data->phase2_method)
178 data->phase2_method->deinit(sm, data->phase2_priv);
222 if (data->phase2_method == NULL || data->phase2_priv == NULL ||
223 data->phase2_method->isKeyAvailable == NULL ||
224 data->phase2_method->getKey == NULL)
227 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
228 (key = data->phase2_method->getKey(sm, data->phase2_priv,
710 data->phase2_method = eap_peer_get_eap_method(
713 if (data->phase2_method) {
    [all...]
eap_ttls.c 34 const struct eap_method *phase2_method; member in struct:eap_ttls_data
126 if (data->phase2_priv && data->phase2_method) {
127 data->phase2_method->deinit(sm, data->phase2_priv);
128 data->phase2_method = NULL;
269 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
291 if (data->tnc_started && data->phase2_method &&
338 data->phase2_method = eap_peer_get_eap_method(
340 if (data->phase2_method) {
342 data->phase2_priv = data->phase2_method->init(sm);
346 if (data->phase2_priv == NULL || data->phase2_method == NULL)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_fast.c 44 const struct eap_method *phase2_method; member in struct:eap_fast_data
234 if (data->phase2_priv && data->phase2_method)
235 data->phase2_method->deinit(sm, data->phase2_priv);
335 data->phase2_method =
338 if (data->phase2_method == NULL)
346 data->phase2_priv = data->phase2_method->init(sm);
426 if (data->phase2_priv && data->phase2_method &&
430 data->phase2_method->deinit(sm, data->phase2_priv);
431 data->phase2_method = NULL;
458 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret
    [all...]
eap_peap.c 44 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);
228 if (data->phase2_method == NULL || data->phase2_priv == NULL ||
229 data->phase2_method->isKeyAvailable == NULL ||
230 data->phase2_method->getKey == NULL)
233 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
234 (key = data->phase2_method->getKey(sm, data->phase2_priv,
714 data->phase2_method = eap_peer_get_eap_method(
717 if (data->phase2_method) {
    [all...]
eap_ttls.c 51 const struct eap_method *phase2_method; member in struct:eap_ttls_data
164 if (data->phase2_priv && data->phase2_method) {
165 data->phase2_method->deinit(sm, data->phase2_priv);
166 data->phase2_method = NULL;
429 const struct eap_method *m = data->phase2_method;
487 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
510 if (data->tnc_started && data->phase2_method &&
557 data->phase2_method = eap_peer_get_eap_method(
559 if (data->phase2_method) {
561 data->phase2_priv = data->phase2_method->init(sm)
    [all...]

Completed in 361 milliseconds