/external/wpa_supplicant_8/src/eap_peer/ |
eap_peap.c | 761 struct wpabuf *in_decrypted = NULL; local 775 in_decrypted = data->pending_phase2_req; 800 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted); 806 in_decrypted); 808 hdr = wpabuf_mhead(in_decrypted); 809 if (wpabuf_len(in_decrypted) == 5 && hdr->code == EAP_CODE_REQUEST && 811 eap_get_type(in_decrypted) == EAP_TYPE_IDENTITY) { 816 if (wpabuf_len(in_decrypted) >= 5 && hdr->code == EAP_CODE_REQUEST && 817 eap_get_type(in_decrypted) == EAP_TYPE_TLV) { 824 wpabuf_len(in_decrypted)); [all...] |
eap_tls_common.h | 119 struct wpabuf **in_decrypted);
|
eap_ttls.c | 918 static int eap_ttls_parse_avps(struct wpabuf *in_decrypted, 925 pos = wpabuf_mhead(in_decrypted); 926 left = wpabuf_len(in_decrypted); 1157 struct wpabuf *in_decrypted, 1313 struct wpabuf *in_decrypted = NULL; local [all...] |
eap_fast.c | 1275 struct wpabuf *in_decrypted; local [all...] |
eap_tls_common.c | 937 * @in_decrypted: Buffer for returning a pointer to the decrypted message 942 struct wpabuf **in_decrypted) 951 *in_decrypted = tls_connection_decrypt(data->ssl_ctx, data->conn, msg); 953 if (*in_decrypted == NULL) { [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_peap.c | 1032 struct wpabuf *in_decrypted; local 1049 in_decrypted = tls_connection_decrypt(sm->ssl_ctx, data->ssl.conn, 1051 if (in_decrypted == NULL) { 1059 in_decrypted); 1066 wpabuf_len(in_decrypted)); 1068 wpabuf_free(in_decrypted); 1077 wpabuf_len(in_decrypted)); 1078 wpabuf_put_buf(nbuf, in_decrypted); 1079 wpabuf_free(in_decrypted); 1081 in_decrypted = nbuf [all...] |
eap_server_ttls.c | 950 struct wpabuf *in_decrypted; local 967 in_decrypted = tls_connection_decrypt(sm->ssl_ctx, data->ssl.conn, 969 if (in_decrypted == NULL) { 977 in_decrypted); 979 if (eap_ttls_avp_parse(in_decrypted, &parse) < 0) { 981 wpabuf_free(in_decrypted); 1040 wpabuf_free(in_decrypted);
|
eap_server_fast.c | 1375 struct wpabuf *in_decrypted; local [all...] |