HomeSort by relevance Sort by last modified time
    Searched defs:in_decrypted (Results 1 - 12 of 12) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_peap.c 762 struct wpabuf *in_decrypted = NULL; local
776 in_decrypted = data->pending_phase2_req;
801 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted);
807 in_decrypted);
809 hdr = wpabuf_mhead(in_decrypted);
810 if (wpabuf_len(in_decrypted) == 5 && hdr->code == EAP_CODE_REQUEST &&
812 eap_get_type(in_decrypted) == EAP_TYPE_IDENTITY) {
817 if (wpabuf_len(in_decrypted) >= 5 && hdr->code == EAP_CODE_REQUEST &&
818 eap_get_type(in_decrypted) == EAP_TYPE_TLV) {
825 wpabuf_len(in_decrypted));
    [all...]
eap_fast.c 1258 struct wpabuf *in_decrypted; local
    [all...]
eap_ttls.c 1181 static int eap_ttls_parse_avps(struct wpabuf *in_decrypted,
1188 pos = wpabuf_mhead(in_decrypted);
1189 left = wpabuf_len(in_decrypted);
1584 struct wpabuf *in_decrypted = NULL; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 758 struct wpabuf *in_decrypted = NULL; local
772 in_decrypted = data->pending_phase2_req;
797 res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted);
803 in_decrypted);
805 hdr = wpabuf_mhead(in_decrypted);
806 if (wpabuf_len(in_decrypted) == 5 && hdr->code == EAP_CODE_REQUEST &&
808 eap_get_type(in_decrypted) == EAP_TYPE_IDENTITY) {
813 if (wpabuf_len(in_decrypted) >= 5 && hdr->code == EAP_CODE_REQUEST &&
814 eap_get_type(in_decrypted) == EAP_TYPE_TLV) {
821 wpabuf_len(in_decrypted));
    [all...]
eap_ttls.c 904 static int eap_ttls_parse_avps(struct wpabuf *in_decrypted,
911 pos = wpabuf_mhead(in_decrypted);
912 left = wpabuf_len(in_decrypted);
1143 struct wpabuf *in_decrypted,
1204 data->pending_phase2_req = wpabuf_dup(in_decrypted);
1299 struct wpabuf *in_decrypted = NULL; local
    [all...]
eap_fast.c 1257 struct wpabuf *in_decrypted; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
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...]
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...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_fast.c 1376 u8 *in_decrypted; local
    [all...]
eap_peap.c 1031 struct wpabuf *in_decrypted; local
1063 in_decrypted = wpabuf_alloc(buf_len);
1064 if (in_decrypted == NULL) {
1072 wpabuf_mhead(in_decrypted),
1077 wpabuf_free(in_decrypted);
1081 wpabuf_put(in_decrypted, len_decrypted);
1084 in_decrypted);
1086 hdr = wpabuf_head(in_decrypted);
1093 wpabuf_len(in_decrypted));
1095 wpabuf_free(in_decrypted);
    [all...]
eap_ttls.c 1129 u8 *in_decrypted; local
1162 in_decrypted = os_malloc(buf_len);
1163 if (in_decrypted == NULL) {
1171 in_decrypted, buf_len);
1175 os_free(in_decrypted);
1193 os_free(in_decrypted);
1198 in_decrypted, len_decrypted);
1200 if (eap_ttls_avp_parse(in_decrypted, len_decrypted, &parse) < 0) {
1202 os_free(in_decrypted);
    [all...]

Completed in 350 milliseconds