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
187 if (data->phase2_priv && data->phase2_method)
188 data->phase2_method->deinit(sm, data->phase2_priv);
233 if (data->phase2_method == NULL || data->phase2_priv == NULL ||
234 data->phase2_method->isKeyAvailable == NULL ||
235 data->phase2_method->getKey == NULL)
238 if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
239 (key = data->phase2_method->getKey(sm, data->phase2_priv,
692 data->phase2_method = eap_peer_get_eap_method(
695 if (data->phase2_method) {
    [all...]
eap_fast.c 38 const struct eap_method *phase2_method; member in struct:eap_fast_data
240 if (data->phase2_priv && data->phase2_method)
241 data->phase2_method->deinit(sm, data->phase2_priv);
344 data->phase2_method =
347 if (data->phase2_method == NULL)
355 data->phase2_priv = data->phase2_method->init(sm);
435 if (data->phase2_priv && data->phase2_method &&
439 data->phase2_method->deinit(sm, data->phase2_priv);
440 data->phase2_method = NULL;
458 data->phase2_method == NULL)
    [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;
292 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
314 if (data->tnc_started && data->phase2_method &&
361 data->phase2_method = eap_peer_get_eap_method(
363 if (data->phase2_method) {
365 data->phase2_priv = data->phase2_method->init(sm);
369 if (data->phase2_priv == NULL || data->phase2_method == NULL)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
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";
169 if (data->phase2_priv && data->phase2_method)
170 data->phase2_method->reset(sm, data->phase2_priv);
209 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
213 buf = data->phase2_method->buildReq(sm, data->phase2_priv, id);
223 data->phase2_method->method != EAP_TYPE_TLV) {
483 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";
339 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
345 if (data->phase2_method->getKey == NULL)
348 if ((key = data->phase2_method->getKey(sm, data->phase2_priv,
358 data->phase2_method->vendor == EAP_VENDOR_IETF &&
359 data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
507 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:
779 if (data->phase2_priv && data->phase2_method) {
780 data->phase2_method->reset(sm, data->phase2_priv)
    [all...]

Completed in 87 milliseconds