• Home
  • Raw
  • Download

Lines Matching refs:pos

287 	u8 *pos;  in lib80211_tkip_hdr()  local
305 pos = skb_push(skb, TKIP_HDR_LEN); in lib80211_tkip_hdr()
306 memmove(pos, pos + TKIP_HDR_LEN, hdr_len); in lib80211_tkip_hdr()
307 pos += hdr_len; in lib80211_tkip_hdr()
309 *pos++ = *rc4key; in lib80211_tkip_hdr()
310 *pos++ = *(rc4key + 1); in lib80211_tkip_hdr()
311 *pos++ = *(rc4key + 2); in lib80211_tkip_hdr()
312 *pos++ = (tkey->key_idx << 6) | (1 << 5) /* Ext IV included */ ; in lib80211_tkip_hdr()
313 *pos++ = tkey->tx_iv32 & 0xff; in lib80211_tkip_hdr()
314 *pos++ = (tkey->tx_iv32 >> 8) & 0xff; in lib80211_tkip_hdr()
315 *pos++ = (tkey->tx_iv32 >> 16) & 0xff; in lib80211_tkip_hdr()
316 *pos++ = (tkey->tx_iv32 >> 24) & 0xff; in lib80211_tkip_hdr()
331 u8 rc4key[16], *pos, *icv; in lib80211_tkip_encrypt() local
345 pos = skb->data + hdr_len; in lib80211_tkip_encrypt()
350 crc = ~crc32_le(~0, pos, len); in lib80211_tkip_encrypt()
358 arc4_crypt(&tkey->tx_ctx_arc4, pos, pos, len + 4); in lib80211_tkip_encrypt()
380 u8 keyidx, *pos; in lib80211_tkip_decrypt() local
399 pos = skb->data + hdr_len; in lib80211_tkip_decrypt()
400 keyidx = pos[3]; in lib80211_tkip_decrypt()
417 iv16 = (pos[0] << 8) | pos[2]; in lib80211_tkip_decrypt()
418 iv32 = pos[4] | (pos[5] << 8) | (pos[6] << 16) | (pos[7] << 24); in lib80211_tkip_decrypt()
419 pos += TKIP_HDR_LEN; in lib80211_tkip_decrypt()
440 arc4_crypt(&tkey->rx_ctx_arc4, pos, pos, plen + 4); in lib80211_tkip_decrypt()
442 crc = ~crc32_le(~0, pos, plen); in lib80211_tkip_decrypt()
447 if (memcmp(icv, pos + plen, 4) != 0) { in lib80211_tkip_decrypt()
545 u8 *pos; in lib80211_michael_mic_add() local
555 pos = skb_put(skb, 8); in lib80211_michael_mic_add()
557 skb->data + hdr_len, skb->len - 8 - hdr_len, pos)) in lib80211_michael_mic_add()