HomeSort by relevance Sort by last modified time
    Searched refs:ftie (Results 1 - 19 of 19) sorted by null

  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 48 u8 ie_type; /* FTIE */
408 * wpa_tdls_ftie_mic - Calculate TDLS FTIE MIC
413 * @ftie: Pointer to the beginning of FT IE
420 const u8 *ftie, u8 *mic)
427 2 + timeoutie[1] + 2 + ftie[1];
453 /* 7) FTIE, with the MIC field of the FTIE set to 0 */
454 os_memcpy(pos, ftie, 2 + ftie[1]);
457 pos += 2 + ftie[1]
642 struct wpa_tdls_ftie *ftie; local
777 struct wpa_tdls_ftie *ftie; local
896 struct wpa_tdls_ftie *ftie; local
1077 struct wpa_tdls_ftie *ftie; local
1158 struct wpa_tdls_ftie *ftie; local
1339 struct wpa_tdls_ftie *ftie = NULL; local
1693 struct wpa_tdls_ftie *ftie; local
1899 struct wpa_tdls_ftie *ftie; local
    [all...]
wpa_ft.c 116 if (ft.ftie) {
117 os_memcpy(pos, ft.ftie - 2, ft.ftie_len + 2);
121 wpa_hexdump(MSG_DEBUG, "FT: Stored MDIE and FTIE from "
154 struct rsn_ftie *ftie; local
257 /* FTIE[SNonce, [R1KH-ID,] R0KH-ID ] */
261 ftie = (struct rsn_ftie *) pos;
262 pos += sizeof(*ftie);
263 os_memcpy(ftie->snonce, sm->snonce, WPA_NONCE_LEN);
265 os_memcpy(ftie->anonce, anonce, WPA_NONCE_LEN);
295 * FTIE (with MIC field set to 0
388 struct rsn_ftie *ftie; local
687 struct rsn_ftie *ftie; local
    [all...]
wpa_ie.h 40 const u8 *ftie; member in struct:wpa_eapol_ie_parse
wpa_ie.c 400 ie->ftie = pos;
402 wpa_hexdump(MSG_DEBUG, "WPA: FTIE in EAPOL-Key",
403 ie->ftie, ie->ftie_len);
wpa.c 287 * FTIE from (Re)Association Response.
857 if (ie->ftie == NULL) {
859 "FT: No FTIE in EAPOL-Key msg 3/4");
866 if (assoc_resp_ftie[1] != ie->ftie[1] ||
867 os_memcmp(assoc_resp_ftie, ie->ftie, 2 + ie->ftie[1]) != 0) {
868 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "FT: FTIE mismatch");
869 wpa_hexdump(MSG_DEBUG, "FT: FTIE in EAPOL-Key msg 3/4",
870 ie->ftie, 2 + ie->ftie[1])
919 const u8 *pos, *end, *mdie = NULL, *ftie = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ft.c 126 struct rsn_ftie *ftie; local
228 /* FTIE[SNonce, R0KH-ID] */
232 ftie = (struct rsn_ftie *) pos;
233 pos += sizeof(*ftie);
234 os_memcpy(ftie->snonce, sm->snonce, WPA_NONCE_LEN);
236 os_memcpy(ftie->anonce, anonce, WPA_NONCE_LEN);
253 * FTIE (with MIC field set to 0)
256 ftie->mic_control[1] = 3; /* Information element count */
261 ftie->mic) < 0) {
277 const u8 *ftie; member in struct:wpa_ft_ies
461 struct rsn_ftie *ftie; local
737 struct rsn_ftie *ftie; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ie.h 39 const u8 *ftie; member in struct:wpa_eapol_ie_parse
wpa_auth_ft.c 585 u8 *end, *mdie, *ftie, *rsnie = NULL, *r0kh_id, *subelem = NULL; local
666 ftie = pos;
673 os_memcpy(sm->assoc_resp_ftie, ftie, ftie_len);
675 _ftie = (struct rsn_ftie *) (ftie + 2);
692 mdie, mdie_len, ftie, ftie_len,
752 struct rsn_ftie *ftie; local
785 ftie = (struct rsn_ftie *) parse.ftie;
786 if (ftie == NULL || parse.ftie_len < sizeof(*ftie)) {
938 struct rsn_ftie *ftie; local
    [all...]
wpa_auth.c 692 if (!kde->mdie || !kde->ftie) {
694 "message 2/4", kde->mdie ? "FTIE" : "MDIE");
707 (kde->ftie[1] != sm->assoc_resp_ftie[1] ||
708 os_memcmp(kde->ftie, sm->assoc_resp_ftie,
710 wpa_printf(MSG_DEBUG, "FT: FTIE mismatch");
711 wpa_hexdump(MSG_DEBUG, "FT: FTIE in EAPOL-Key msg 2/4",
712 kde->ftie, kde->ftie_len);
713 wpa_hexdump(MSG_DEBUG, "FT: FTIE in (Re)AssocResp",
    [all...]
wpa_auth_ie.c 793 ie->ftie = pos;
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_common.h 56 u8 *ftie; member in struct:ieee802_11_elems
wpa_common.c 137 const u8 *ftie, size_t ftie_len,
163 if (ftie) {
165 os_memcpy(pos, ftie, ftie_len);
ieee802_11_common.c 226 elems->ftie = pos;
wpa_common.h 302 const u8 *ftie, size_t ftie_len,
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 32 const u8 *ftie; member in struct:ieee802_11_elems
wpa_common.c 133 const u8 *ftie, size_t ftie_len,
159 if (ftie) {
161 os_memcpy(pos, ftie, ftie_len);
192 parse->ftie = ie;
203 "length in FTIE: %d", pos[1]);
215 "length in FTIE: %d", pos[1]);
242 const struct rsn_ftie *ftie; local
272 if (pos[1] < sizeof(*ftie))
274 ftie = (const struct rsn_ftie *) (pos + 2);
275 prot_ie_count = ftie->mic_control[1]
    [all...]
wpa_common.h 310 const u8 *ftie, size_t ftie_len,
358 const u8 *ftie; member in struct:wpa_ft_ies
ieee802_11_common.c 236 elems->ftie = pos;
  /external/wpa_supplicant_6/wpa_supplicant/
mlme.c 1003 if (elems->ftie && elems->ftie_len >= sizeof(struct rsn_ftie)) {
1004 end = elems->ftie + elems->ftie_len;
1005 hdr = (struct rsn_ftie *) elems->ftie;
    [all...]

Completed in 539 milliseconds