Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/staging/rtl8192u/ieee80211/
Dieee80211_crypt_tkip.c35 u16 tx_iv16; member
310 tkip_mixing_phase2(rc4key, tkey->key, tkey->tx_ttak, tkey->tx_iv16); in ieee80211_tkip_encrypt()
321 *pos++ = Hi8(tkey->tx_iv16); in ieee80211_tkip_encrypt()
322 *pos++ = (Hi8(tkey->tx_iv16) | 0x20) & 0x7F; in ieee80211_tkip_encrypt()
323 *pos++ = Lo8(tkey->tx_iv16); in ieee80211_tkip_encrypt()
354 tkey->tx_iv16++; in ieee80211_tkip_encrypt()
355 if (tkey->tx_iv16 == 0) { in ieee80211_tkip_encrypt()
674 tkey->tx_iv16 = 1; /* TSC is initialized to 1 */ in ieee80211_tkip_set_key()
702 u16 iv16 = tkey->tx_iv16; in ieee80211_tkip_get_key()
708 seq[0] = tkey->tx_iv16; in ieee80211_tkip_get_key()
[all …]
/Linux-v5.4/drivers/staging/rtl8192e/
Drtllib_crypt_tkip.c31 u16 tx_iv16; member
307 tkey->tx_iv16); in rtllib_tkip_encrypt()
318 *pos++ = Hi8(tkey->tx_iv16); in rtllib_tkip_encrypt()
319 *pos++ = (Hi8(tkey->tx_iv16) | 0x20) & 0x7F; in rtllib_tkip_encrypt()
320 *pos++ = Lo8(tkey->tx_iv16); in rtllib_tkip_encrypt()
354 tkey->tx_iv16++; in rtllib_tkip_encrypt()
355 if (tkey->tx_iv16 == 0) { in rtllib_tkip_encrypt()
675 tkey->tx_iv16 = 1; /* TSC is initialized to 1 */ in rtllib_tkip_set_key()
703 u16 iv16 = tkey->tx_iv16; in rtllib_tkip_get_key()
709 seq[0] = tkey->tx_iv16; in rtllib_tkip_get_key()
[all …]
/Linux-v5.4/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()