/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_methods.c | 19 static struct eap_method *eap_methods = NULL; 21 static void eap_peer_method_free(struct eap_method *method); 30 const struct eap_method * eap_peer_get_eap_method(int vendor, in eap_peer_get_eap_method() 33 struct eap_method *m; in eap_peer_get_eap_method() 53 struct eap_method *m; in eap_peer_get_type() 76 struct eap_method *m; in eap_get_name() 97 struct eap_method *m; in eap_get_names() 131 struct eap_method *m; in eap_get_names_as_string_array() 166 const struct eap_method * eap_peer_get_methods(size_t *count) in eap_peer_get_methods() 169 struct eap_method *m; in eap_peer_get_methods() [all …]
|
D | eap_methods.h | 14 const struct eap_method * eap_peer_get_eap_method(int vendor, 16 const struct eap_method * eap_peer_get_methods(size_t *count); 18 struct eap_method * eap_peer_method_alloc(int version, int vendor, 21 int eap_peer_method_register(struct eap_method *method); 70 int eap_peer_method_unload(struct eap_method *method); 79 static inline int eap_peer_method_unload(struct eap_method *method) in eap_peer_method_unload()
|
D | eap_aka.c | 53 u8 eap_method; member 102 data->eap_method = EAP_TYPE_AKA; in eap_aka_init() 132 data->eap_method = EAP_TYPE_AKA_PRIME; in eap_aka_prime_init() 495 if (data->eap_method == EAP_TYPE_AKA_PRIME) in eap_aka_add_checkcode() 502 data->eap_method == EAP_TYPE_AKA_PRIME ? in eap_aka_add_checkcode() 528 hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ? in eap_aka_verify_checkcode() 542 if (data->eap_method == EAP_TYPE_AKA_PRIME) in eap_aka_verify_checkcode() 568 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method, in eap_aka_client_error() 571 return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0); in eap_aka_client_error() 586 msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method, in eap_aka_authentication_reject() [all …]
|
D | eap_i.h | 66 struct eap_method { struct 234 void (*free)(struct eap_method *method); argument 253 struct eap_method *next; argument 340 const struct eap_method *m; /* selected EAP method */
|
D | eap_tls.c | 426 struct eap_method *eap; in eap_peer_tls_register() 452 struct eap_method *eap; in eap_peer_unauth_tls_register() 479 struct eap_method *eap; in eap_peer_wfa_unauth_tls_register()
|
D | eap.c | 331 const struct eap_method *eap_method; in SM_STATE() local 340 eap_method = eap_peer_get_eap_method(sm->reqVendor, method); in SM_STATE() 349 eap_method ? eap_method->name : "unknown"); in SM_STATE() 357 eap_method ? eap_method->name : "unknown"); in SM_STATE() 381 sm->m = eap_method; in SM_STATE() 1387 struct eap_sm *sm, int id, const struct eap_method *methods, in eap_sm_build_expanded_nak() 1392 const struct eap_method *m; in eap_sm_build_expanded_nak() 1439 const struct eap_method *methods, *m; in eap_sm_buildNak() 2375 const struct eap_method *m = in eap_sm_get_status() 2675 const struct eap_method *methods, *m; in eap_get_phase2_types()
|
D | eap_otp.c | 85 struct eap_method *eap; in eap_peer_otp_register()
|
D | eap_md5.c | 104 struct eap_method *eap; in eap_peer_md5_register()
|
D | eap_gtc.c | 129 struct eap_method *eap; in eap_peer_gtc_register()
|
D | eap_vendor_test.c | 171 struct eap_method *eap; in eap_peer_vendor_test_register()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server_methods.c | 16 static struct eap_method *eap_methods; 25 const struct eap_method * eap_server_get_eap_method(int vendor, in eap_server_get_eap_method() 28 struct eap_method *m; in eap_server_get_eap_method() 48 struct eap_method *m; in eap_server_get_type() 72 struct eap_method * eap_server_method_alloc(int version, int vendor, in eap_server_method_alloc() 76 struct eap_method *eap; in eap_server_method_alloc() 92 static void eap_server_method_free(struct eap_method *method) in eap_server_method_free() 108 int eap_server_method_register(struct eap_method *method) in eap_server_method_register() 110 struct eap_method *m, *last = NULL; in eap_server_method_register() 145 struct eap_method *m; in eap_server_unregister_methods() [all …]
|
D | eap_server_aka.c | 49 u8 eap_method; member 95 if (data->eap_method == EAP_TYPE_AKA_PRIME && in eap_aka_check_identity_reauth() 98 if (data->eap_method == EAP_TYPE_AKA && in eap_aka_check_identity_reauth() 116 if (data->eap_method == EAP_TYPE_AKA_PRIME) { in eap_aka_check_identity_reauth() 152 if ((data->eap_method == EAP_TYPE_AKA_PRIME && in eap_aka_check_identity() 154 (data->eap_method == EAP_TYPE_AKA && in eap_aka_check_identity() 194 data->eap_method = EAP_TYPE_AKA; in eap_aka_init() 220 data->eap_method = EAP_TYPE_AKA_PRIME; in eap_aka_prime_init() 290 if (data->eap_method == EAP_TYPE_AKA_PRIME) in eap_aka_add_checkcode() 296 data->eap_method == EAP_TYPE_AKA_PRIME ? in eap_aka_add_checkcode() [all …]
|
D | 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, 19 int eap_server_method_register(struct eap_method *method);
|
D | eap_i.h | 24 struct eap_method { struct 57 void (*free)(struct eap_method *method); argument 76 struct eap_method *next; argument 153 const struct eap_method *m; /* selected EAP method */
|
D | eap_server_tls.c | 422 struct eap_method *eap; in eap_server_tls_register() 447 struct eap_method *eap; in eap_server_unauth_tls_register() 474 struct eap_method *eap; in eap_server_wfa_unauth_tls_register()
|
D | eap_server_vendor_test.c | 170 struct eap_method *eap; in eap_server_vendor_test_register()
|
D | eap_server_identity.c | 159 struct eap_method *eap; in eap_server_identity_register()
|
D | eap_server_md5.c | 155 struct eap_method *eap; in eap_server_md5_register()
|
D | eap_server_gtc.c | 203 struct eap_method *eap; in eap_server_gtc_register()
|
/external/wpa_supplicant_8/hs20/server/ |
D | hs20_spp_server.c | 97 ctx->eap_method = getenv("HS20EAPMETHOD"); in process() 98 if (ctx->eap_method) in process() 99 debug_print(ctx, 1, "EAP method %s", ctx->eap_method); in process()
|
D | sql.txt | 29 eap_method TEXT, 106 eap_method TEXT,
|
D | spp_server.h | 21 const char *eap_method; member
|
D | spp_server.c | 1544 if (ctx->eap_method && os_strcmp(ctx->eap_method, "AKA") == 0) in build_pps() 1546 else if (ctx->eap_method && in build_pps() 1547 os_strcmp(ctx->eap_method, "AKA'") == 0) in build_pps() 2032 if (ctx->eap_method) in hs20_sim_provisioning() 2033 db_add_session_eap_method(ctx, session_id, ctx->eap_method); in hs20_sim_provisioning() 2396 char *osu_user, *osu_password, *eap_method; in add_subscription() local 2422 eap_method = db_get_session_val(ctx, NULL, NULL, session_id, in add_subscription() 2465 if (eap_method && eap_method[0]) in add_subscription() 2466 method = eap_method; in add_subscription() 2579 free(eap_method); in add_subscription()
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | spp.php | 107 $eap_method = $row['eap_method']; variable 120 putenv("HS20EAPMETHOD=$eap_method");
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | interworking.c | 177 if (!cred->eap_method) in cred_with_nai_realm() 1017 if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) { in interworking_connect_3gpp() 1018 if (cred->eap_method[0].method == EAP_TYPE_SIM || in interworking_connect_3gpp() 1019 cred->eap_method[0].method == EAP_TYPE_AKA || in interworking_connect_3gpp() 1020 cred->eap_method[0].method == EAP_TYPE_AKA_PRIME) in interworking_connect_3gpp() 1021 eap_type = cred->eap_method[0].method; in interworking_connect_3gpp() 1394 if (!cred->eap_method) in interworking_credentials_available_roaming_consortium() 1442 if (cred->eap_method) { in interworking_set_eap_params() 1443 ttls = cred->eap_method->vendor == EAP_VENDOR_IETF && in interworking_set_eap_params() 1444 cred->eap_method->method == EAP_TYPE_TTLS; in interworking_set_eap_params() [all …]
|