HomeSort by relevance Sort by last modified time
    Searched refs:eap_method (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/wpa_supplicant_8/src/eap_server/
eap_methods.h 14 const struct eap_method * eap_server_get_eap_method(int vendor,
16 struct eap_method * eap_server_method_alloc(int version, int vendor,
18 void eap_server_method_free(struct eap_method *method);
19 int eap_server_method_register(struct eap_method *method);
eap_server_methods.c 16 static struct eap_method *eap_methods;
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
27 struct eap_method *m;
47 struct eap_method *m;
71 struct eap_method * eap_server_method_alloc(int version, int vendor,
74 struct eap_method *eap;
90 void eap_server_method_free(struct eap_method *method)
105 int eap_server_method_register(struct eap_method *method)
107 struct eap_method *m, *last = NULL;
138 struct eap_method *m
    [all...]
eap_i.h 19 * struct eap_method - EAP method interface
24 struct eap_method { struct
52 * registration (e.g., allocated struct eap_method), they should be
58 void (*free)(struct eap_method *method);
77 struct eap_method *next;
82 * @priv: Pointer to private EAP method data from eap_method::init()
139 const struct eap_method *m; /* selected EAP method */
eap_server_aka.c 48 u8 eap_method; member in struct:eap_aka_data
94 if (data->eap_method == EAP_TYPE_AKA_PRIME &&
97 if (data->eap_method == EAP_TYPE_AKA &&
115 if (data->eap_method == EAP_TYPE_AKA_PRIME) {
151 if ((data->eap_method == EAP_TYPE_AKA_PRIME &&
153 (data->eap_method == EAP_TYPE_AKA &&
193 data->eap_method = EAP_TYPE_AKA;
219 data->eap_method = EAP_TYPE_AKA_PRIME;
289 if (data->eap_method == EAP_TYPE_AKA_PRIME)
295 data->eap_method == EAP_TYPE_AKA_PRIME
    [all...]
eap_server_tls.c 289 struct eap_method *eap;
317 struct eap_method *eap;
eap_server_identity.c 152 struct eap_method *eap;
eap_server_md5.c 155 struct eap_method *eap;
eap_server_vendor_test.c 170 struct eap_method *eap;
eap_server_gtc.c 204 struct eap_method *eap;
eap_server_ttls.c 35 const struct eap_method *phase2_method;
801 const struct eap_method *m = data->phase2_method;
1172 struct eap_method *eap;
  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.h 14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
15 const struct eap_method * eap_peer_get_methods(size_t *count);
17 struct eap_method * eap_peer_method_alloc(int version, int vendor,
19 void eap_peer_method_free(struct eap_method *method);
20 int eap_peer_method_register(struct eap_method *method);
69 int eap_peer_method_unload(struct eap_method *method);
78 static inline int eap_peer_method_unload(struct eap_method *method)
eap_methods.c 19 static struct eap_method *eap_methods = NULL;
28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method)
30 struct eap_method *m;
50 struct eap_method *m;
73 struct eap_method *m;
94 struct eap_method *m;
128 struct eap_method *m;
163 const struct eap_method * eap_peer_get_methods(size_t *count)
166 struct eap_method *m;
231 int eap_peer_method_unload(struct eap_method *method
    [all...]
eap_i.h 27 * struct eap_method_ret - EAP return values from struct eap_method::process()
31 * the return value of struct eap_method::process() so it is not included in
58 * struct eap_method - EAP method interface
63 struct eap_method { struct
94 * @priv: Pointer to private EAP method data from eap_method::init()
103 * @priv: Pointer to private EAP method data from eap_method::init()
122 * @priv: Pointer to private EAP method data from eap_method::init()
130 * @priv: Pointer to private EAP method data from eap_method::init()
143 * @priv: Pointer to private EAP method data from eap_method::init()
160 * @priv: Pointer to private EAP method data from eap_method::init(
    [all...]
eap_aka.c 51 u8 eap_method; member in struct:eap_aka_data
99 data->eap_method = EAP_TYPE_AKA;
125 data->eap_method = EAP_TYPE_AKA_PRIME;
370 if (data->eap_method == EAP_TYPE_AKA_PRIME)
377 data->eap_method == EAP_TYPE_AKA_PRIME ?
403 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
417 if (data->eap_method == EAP_TYPE_AKA_PRIME)
443 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
461 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
477 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
    [all...]
eap_otp.c 85 struct eap_method *eap;
eap_md5.c 104 struct eap_method *eap;
eap_gtc.c 129 struct eap_method *eap;
eap.c 238 const struct eap_method *eap_method; local
247 eap_method = eap_peer_get_eap_method(sm->reqVendor, method);
256 eap_method ? eap_method->name : "unknown");
264 eap_method ? eap_method->name : "unknown");
288 sm->m = eap_method;
724 case EAP_METHOD:
801 struct eap_sm *sm, int id, const struct eap_method *methods
    [all...]
eap_vendor_test.c 170 struct eap_method *eap;
eap_tls.c 329 struct eap_method *eap;
359 struct eap_method *eap;
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.c 139 if (!cred->eap_method)
788 if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) {
789 if (cred->eap_method[0].method == EAP_TYPE_SIM ||
790 cred->eap_method[0].method == EAP_TYPE_AKA ||
791 cred->eap_method[0].method == EAP_TYPE_AKA_PRIME)
792 eap_type = cred->eap_method[0].method;
989 if (cred->eap_method) {
990 ttls = cred->eap_method->vendor == EAP_VENDOR_IETF &&
991 cred->eap_method->method == EAP_TYPE_TTLS
    [all...]
config.h 178 * eap_method - EAP method to use
184 struct eap_method_type *eap_method; member in struct:wpa_cred
config_file.c 745 if (cred->eap_method) {
747 name = eap_get_name(cred->eap_method[0].vendor,
748 cred->eap_method[0].method);
config.c     [all...]
  /external/wpa_supplicant_8/src/ap/
ap_config.h 170 u8 eap_method; member in struct:hostapd_nai_realm_data::hostapd_nai_realm_eap
174 } eap_method[MAX_NAI_EAP_METHODS]; member in struct:hostapd_nai_realm_data

Completed in 615 milliseconds

1 2 3