Home
last modified time | relevance | path

Searched refs:FILS_SESSION_LEN (Results 1 – 7 of 7) sorted by relevance

/external/wpa_supplicant_8/src/rsn_supp/
Dwpa.c3947 random_get_bytes(sm->fils_session, FILS_SESSION_LEN) < 0) in fils_build_auth()
3953 sm->fils_session, FILS_SESSION_LEN); in fils_build_auth()
4023 wpabuf_put_u8(buf, 1 + FILS_SESSION_LEN); /* Length */ in fils_build_auth()
4026 wpabuf_put_data(buf, sm->fils_session, FILS_SESSION_LEN); in fils_build_auth()
4230 FILS_SESSION_LEN); in fils_process_auth()
4231 if (os_memcmp(sm->fils_session, elems.fils_session, FILS_SESSION_LEN) in fils_process_auth()
4235 sm->fils_session, FILS_SESSION_LEN); in fils_process_auth()
4498 wpabuf_put_u8(buf, 1 + FILS_SESSION_LEN); /* Length */ in fils_build_assoc_req()
4501 wpabuf_put_data(buf, sm->fils_session, FILS_SESSION_LEN); in fils_build_assoc_req()
4697 FILS_SESSION_LEN) != 0) { in fils_process_assoc_resp()
[all …]
Dwpa_i.h161 u8 fils_session[FILS_SESSION_LEN];
/external/wpa_supplicant_8/src/ap/
Dsta_info.h243 u8 fils_session[FILS_SESSION_LEN];
Dwpa_auth.c2449 ie[1] >= 1 + FILS_SESSION_LEN && in wpa_fils_validate_fils_session()
2471 if (os_memcmp(fils_session, session + 3, FILS_SESSION_LEN) != 0) { in wpa_fils_validate_fils_session()
2474 fils_session, FILS_SESSION_LEN); in wpa_fils_validate_fils_session()
2476 session + 3, FILS_SESSION_LEN); in wpa_fils_validate_fils_session()
2829 *pos++ = 1 + FILS_SESSION_LEN; /* Length */ in hostapd_eid_assoc_fils_session()
2831 os_memcpy(pos, fils_session, FILS_SESSION_LEN); in hostapd_eid_assoc_fils_session()
2832 pos += FILS_SESSION_LEN; in hostapd_eid_assoc_fils_session()
Dieee802_11.c1837 FILS_SESSION_LEN); in handle_auth_fils()
1838 os_memcpy(sta->fils_session, elems.fils_session, FILS_SESSION_LEN); in handle_auth_fils()
2003 wpabuf_put_u8(data, 1 + FILS_SESSION_LEN); /* Length */ in prepare_auth_resp_fils()
2006 wpabuf_put_data(data, sta->fils_session, FILS_SESSION_LEN); in prepare_auth_resp_fils()
3946 *p++ = 1 + FILS_SESSION_LEN; /* Length */ in send_assoc_resp()
3948 os_memcpy(p, elems.fils_session, FILS_SESSION_LEN); in send_assoc_resp()
3949 send_len += 2 + 1 + FILS_SESSION_LEN; in send_assoc_resp()
/external/wpa_supplicant_8/src/common/
Dieee802_11_defs.h845 #define FILS_SESSION_LEN 8 macro
Dieee802_11_common.c234 if (elen != FILS_SESSION_LEN) in ieee802_11_parse_extension()