Searched refs:in_decrypted (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/wpa_supplicant/src/eap_peer/ |
D | eap_peap.c | 777 struct wpabuf *in_decrypted = NULL; in eap_peap_decrypt() local 791 in_decrypted = data->pending_phase2_req; in eap_peap_decrypt() 816 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted); in eap_peap_decrypt() 822 in_decrypted); in eap_peap_decrypt() 824 hdr = wpabuf_mhead(in_decrypted); in eap_peap_decrypt() 825 if (wpabuf_len(in_decrypted) == 5 && hdr->code == EAP_CODE_REQUEST && in eap_peap_decrypt() 827 eap_get_type(in_decrypted) == EAP_TYPE_IDENTITY) { in eap_peap_decrypt() 832 if (wpabuf_len(in_decrypted) >= 5 && hdr->code == EAP_CODE_REQUEST && in eap_peap_decrypt() 833 eap_get_type(in_decrypted) == EAP_TYPE_TLV) { in eap_peap_decrypt() 840 wpabuf_len(in_decrypted)); in eap_peap_decrypt() [all …]
|
D | eap_ttls.c | 928 static int eap_ttls_parse_avps(struct wpabuf *in_decrypted, in eap_ttls_parse_avps() argument 935 pos = wpabuf_mhead(in_decrypted); in eap_ttls_parse_avps() 936 left = wpabuf_len(in_decrypted); in eap_ttls_parse_avps() 1164 struct wpabuf *in_decrypted, in eap_ttls_process_decrypted() argument 1225 data->pending_phase2_req = wpabuf_dup(in_decrypted); in eap_ttls_process_decrypted() 1320 struct wpabuf *in_decrypted = NULL; in eap_ttls_decrypt() local 1336 in_decrypted = data->pending_phase2_req; in eap_ttls_decrypt() 1338 if (wpabuf_len(in_decrypted) == 0) { in eap_ttls_decrypt() 1339 wpabuf_free(in_decrypted); in eap_ttls_decrypt() 1359 retval = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted); in eap_ttls_decrypt() [all …]
|
D | eap_fast.c | 1280 struct wpabuf *in_decrypted; in eap_fast_decrypt() local 1292 in_decrypted = data->pending_phase2_req; in eap_fast_decrypt() 1304 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted); in eap_fast_decrypt() 1310 in_decrypted); in eap_fast_decrypt() 1312 if (wpabuf_len(in_decrypted) < 4) { in eap_fast_decrypt() 1315 (unsigned long) wpabuf_len(in_decrypted)); in eap_fast_decrypt() 1316 wpabuf_free(in_decrypted); in eap_fast_decrypt() 1321 in_decrypted, out_data); in eap_fast_decrypt() 1323 wpabuf_free(in_decrypted); in eap_fast_decrypt()
|
D | eap_tls_common.h | 119 struct wpabuf **in_decrypted);
|
D | eap_tls_common.c | 870 struct wpabuf **in_decrypted) in eap_peer_tls_decrypt() argument 879 *in_decrypted = tls_connection_decrypt(data->ssl_ctx, data->conn, msg); in eap_peer_tls_decrypt() 881 if (*in_decrypted == NULL) { in eap_peer_tls_decrypt()
|