| /Linux-v5.4/net/mac80211/ |
| D | tkip.c | 67 static u8 *write_tkip_iv(u8 *pos, u16 iv16) in write_tkip_iv() argument 69 *pos++ = iv16 >> 8; in write_tkip_iv() 70 *pos++ = ((iv16 >> 8) | 0x20) & 0x7f; in write_tkip_iv() 71 *pos++ = iv16 & 0xFF; in write_tkip_iv() 206 u16 iv16 = data[2] | (data[0] << 8); in ieee80211_get_tkip_p2k() local 210 tkip_mixing_phase2(tk, ctx, iv16, p2k); in ieee80211_get_tkip_p2k() 246 u32 iv16; in ieee80211_tkip_decrypt_data() local 255 iv16 = (pos[0] << 8) | pos[2]; in ieee80211_tkip_decrypt_data() 268 (iv32 == rx_ctx->iv32 && iv16 <= rx_ctx->iv16))) in ieee80211_tkip_decrypt_data() 295 tkip_mixing_phase2(tk, &rx_ctx->ctx, iv16, rc4key); in ieee80211_tkip_decrypt_data() [all …]
|
| D | key.h | 55 u16 iv16; /* current iv16 */ member
|
| D | key.c | 533 key->u.tkip.rx[i].iv16 = in ieee80211_key_alloc() 1111 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16; in ieee80211_get_key_rx_seq() 1164 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16; in ieee80211_set_key_rx_seq()
|
| D | debugfs_key.c | 175 key->u.tkip.rx[i].iv16); in key_rx_spec_read()
|
| D | cfg.c | 555 u16 iv16; in ieee80211_get_key() local 587 iv16 = TKIP_PN_TO_IV16(pn64); in ieee80211_get_key() 593 iv16 = kseq.tkip.iv16; in ieee80211_get_key() 596 seq[0] = iv16 & 0xff; in ieee80211_get_key() 597 seq[1] = (iv16 >> 8) & 0xff; in ieee80211_get_key()
|
| D | wpa.c | 171 rx->key->u.tkip.rx[rx->security_idx].iv16 = rx->tkip_iv16; in ieee80211_rx_h_michael_mic_verify()
|
| /Linux-v5.4/net/wireless/ |
| D | lib80211_crypt_tkip.c | 382 u16 iv16; in lib80211_tkip_decrypt() local 417 iv16 = (pos[0] << 8) | pos[2]; in lib80211_tkip_decrypt() 421 if (tkip_replay_check(iv32, iv16, tkey->rx_iv32, tkey->rx_iv16)) { in lib80211_tkip_decrypt() 425 iv32, iv16); in lib80211_tkip_decrypt() 435 tkip_mixing_phase2(rc4key, tkey->key, tkey->rx_ttak, iv16); in lib80211_tkip_decrypt() 464 tkey->rx_iv16_new = iv16; in lib80211_tkip_decrypt() 666 u16 iv16 = tkey->tx_iv16; in lib80211_tkip_get_key() local 668 if (iv16 == 0) in lib80211_tkip_get_key() 670 iv16--; in lib80211_tkip_get_key()
|
| /Linux-v5.4/drivers/staging/rtl8192e/ |
| D | rtllib_crypt_tkip.c | 372 u16 iv16; in rtllib_tkip_decrypt() local 412 iv16 = (pos[0] << 8) | pos[2]; in rtllib_tkip_decrypt() 420 (iv32 == tkey->rx_iv32 && iv16 <= tkey->rx_iv16)) && in rtllib_tkip_decrypt() 426 tkey->rx_iv16, iv32, iv16); in rtllib_tkip_decrypt() 438 tkip_mixing_phase2(rc4key, tkey->key, tkey->rx_ttak, iv16); in rtllib_tkip_decrypt() 488 tkey->rx_iv16_new = iv16; in rtllib_tkip_decrypt() 703 u16 iv16 = tkey->tx_iv16; in rtllib_tkip_get_key() local 706 if (iv16 == 0) in rtllib_tkip_get_key() 708 iv16--; in rtllib_tkip_get_key()
|
| /Linux-v5.4/drivers/staging/rtl8192u/ieee80211/ |
| D | ieee80211_crypt_tkip.c | 373 u16 iv16; in ieee80211_tkip_decrypt() local 410 iv16 = (pos[0] << 8) | pos[2]; in ieee80211_tkip_decrypt() 418 (iv32 == tkey->rx_iv32 && iv16 <= tkey->rx_iv16)) { in ieee80211_tkip_decrypt() 423 tkey->rx_iv32, tkey->rx_iv16, iv32, iv16); in ieee80211_tkip_decrypt() 433 tkip_mixing_phase2(rc4key, tkey->key, tkey->rx_ttak, iv16); in ieee80211_tkip_decrypt() 485 tkey->rx_iv16_new = iv16; in ieee80211_tkip_decrypt() 702 u16 iv16 = tkey->tx_iv16; in ieee80211_tkip_get_key() local 705 if (iv16 == 0) in ieee80211_tkip_get_key() 707 iv16--; in ieee80211_tkip_get_key()
|
| /Linux-v5.4/drivers/staging/rtl8188eu/core/ |
| D | rtw_security.c | 532 static void phase2(u8 *rc4key, const u8 *tk, const u16 *p1k, u16 iv16) in phase2() argument 539 PPK[5] = p1k[4] + iv16; /* next, add in IV16 */ in phase2() 562 rc4key[0] = Hi8(iv16); /* RC4KEY[0..2] is the WEP IV */ in phase2() 563 rc4key[1] = (Hi8(iv16) | 0x20) & 0x7F; /* Help avoid weak (FMS) keys */ in phase2() 564 rc4key[2] = Lo8(iv16); in phase2()
|
| /Linux-v5.4/drivers/staging/rtl8712/ |
| D | rtl871x_security.c | 519 static void phase2(u8 *rc4key, const u8 *tk, const u16 *p1k, u16 iv16) in phase2() argument 527 PPK[5] = p1k[4] + iv16; /* next, add in IV16 */ in phase2() 547 rc4key[0] = Hi8(iv16); /* RC4KEY[0..2] is the WEP IV */ in phase2() 548 rc4key[1] = (Hi8(iv16) | 0x20) & 0x7F; /* Help avoid weak (FMS) keys */ in phase2() 549 rc4key[2] = Lo8(iv16); in phase2()
|
| /Linux-v5.4/drivers/net/wireless/intel/iwlwifi/mvm/ |
| D | d3.c | 259 tkip_tx_sc->iv16 = cpu_to_le16(TKIP_PN_TO_IV16(pn64)); in iwl_mvm_wowlan_program_keys() 285 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16); in iwl_mvm_wowlan_program_keys() 1272 seq->tkip.iv16 = le16_to_cpu(sc->iv16); in iwl_mvm_tkip_sc_to_seq() 1406 (u64)seq.tkip.iv16 | in iwl_mvm_d3_update_keys()
|
| /Linux-v5.4/drivers/net/wireless/intel/iwlwifi/dvm/ |
| D | lib.c | 919 tkip_tx_sc->iv16 = cpu_to_le16(TKIP_PN_TO_IV16(pn64)); in iwlagn_wowlan_program_keys() 944 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16); in iwlagn_wowlan_program_keys()
|
| D | commands.h | 3799 __le16 iv16; member
|
| /Linux-v5.4/drivers/net/wireless/intel/iwlwifi/fw/api/ |
| D | d3.h | 420 __le16 iv16; member
|
| /Linux-v5.4/drivers/staging/rtl8723bs/core/ |
| D | rtw_security.c | 603 static void phase2(u8 *rc4key, const u8 *tk, const u16 *p1k, u16 iv16) in phase2() argument 612 PPK[5] = p1k[4]+iv16; /* next, add in IV16 */ in phase2() 635 rc4key[0] = Hi8(iv16); /* RC4KEY[0..2] is the WEP IV */ in phase2() 636 rc4key[1] = (Hi8(iv16) | 0x20) & 0x7F; /* Help avoid weak (FMS) keys */ in phase2() 637 rc4key[2] = Lo8(iv16); in phase2()
|
| /Linux-v5.4/drivers/net/wireless/st/cw1200/ |
| D | sta.c | 754 wsm_key->tkip_group.rx_seqnum[0] = seq.tkip.iv16 & 0xff; in cw1200_set_key() 755 wsm_key->tkip_group.rx_seqnum[1] = (seq.tkip.iv16 >> 8) & 0xff; in cw1200_set_key()
|
| /Linux-v5.4/include/net/ |
| D | mac80211.h | 1789 u16 iv16; member
|
| /Linux-v5.4/drivers/net/wireless/ralink/rt2x00/ |
| D | rt2800lib.c | 10335 memcpy(&seq->tkip.iv16, &iveiv_entry.iv[0], 2); in rt2800_get_key_seq()
|