Home
last modified time | relevance | path

Searched refs:tx_iv16 (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.6/drivers/staging/rtl8192u/ieee80211/
Dieee80211_crypt_tkip.c35 u16 tx_iv16; member
291 tkip_mixing_phase2(rc4key, tkey->key, tkey->tx_ttak, tkey->tx_iv16); in ieee80211_tkip_encrypt()
302 *pos++ = Hi8(tkey->tx_iv16); in ieee80211_tkip_encrypt()
303 *pos++ = (Hi8(tkey->tx_iv16) | 0x20) & 0x7F; in ieee80211_tkip_encrypt()
304 *pos++ = Lo8(tkey->tx_iv16); in ieee80211_tkip_encrypt()
329 tkey->tx_iv16++; in ieee80211_tkip_encrypt()
330 if (tkey->tx_iv16 == 0) { in ieee80211_tkip_encrypt()
620 tkey->tx_iv16 = 1; /* TSC is initialized to 1 */ in ieee80211_tkip_set_key()
648 u16 iv16 = tkey->tx_iv16; in ieee80211_tkip_get_key()
654 seq[0] = tkey->tx_iv16; in ieee80211_tkip_get_key()
[all …]
/Linux-v6.6/drivers/staging/rtl8192e/
Drtllib_crypt_tkip.c31 u16 tx_iv16; member
278 tkey->tx_iv16); in rtllib_tkip_encrypt()
289 *pos++ = Hi8(tkey->tx_iv16); in rtllib_tkip_encrypt()
290 *pos++ = (Hi8(tkey->tx_iv16) | 0x20) & 0x7F; in rtllib_tkip_encrypt()
291 *pos++ = Lo8(tkey->tx_iv16); in rtllib_tkip_encrypt()
316 tkey->tx_iv16++; in rtllib_tkip_encrypt()
317 if (tkey->tx_iv16 == 0) { in rtllib_tkip_encrypt()
612 tkey->tx_iv16 = 1; /* TSC is initialized to 1 */ in rtllib_tkip_set_key()
640 u16 iv16 = tkey->tx_iv16; in rtllib_tkip_get_key()
646 seq[0] = tkey->tx_iv16; in rtllib_tkip_get_key()
[all …]
/Linux-v6.6/net/wireless/
Dlib80211_crypt_tkip.c48 u16 tx_iv16; member
303 tkip_mixing_phase2(rc4key, tkey->key, tkey->tx_ttak, tkey->tx_iv16); in lib80211_tkip_hdr()
318 tkey->tx_iv16++; in lib80211_tkip_hdr()
319 if (tkey->tx_iv16 == 0) { in lib80211_tkip_hdr()
639 tkey->tx_iv16 = 1; /* TSC is initialized to 1 */ in lib80211_tkip_set_key()
666 u16 iv16 = tkey->tx_iv16; in lib80211_tkip_get_key()
671 seq[0] = tkey->tx_iv16; in lib80211_tkip_get_key()
672 seq[1] = tkey->tx_iv16 >> 8; in lib80211_tkip_get_key()
695 (tkip->tx_iv16 >> 8) & 0xff, in lib80211_tkip_print_stats()
696 tkip->tx_iv16 & 0xff, in lib80211_tkip_print_stats()