Home
last modified time | relevance | path

Searched refs:IEEE80211_WEP_ICV_LEN (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/net/mac80211/
Dwep.c147 for (i = 0; i < data_len + IEEE80211_WEP_ICV_LEN; i++) in ieee80211_wep_encrypt_data()
169 if (WARN_ON(skb_tailroom(skb) < IEEE80211_WEP_ICV_LEN)) in ieee80211_wep_encrypt()
185 skb_put(skb, IEEE80211_WEP_ICV_LEN); in ieee80211_wep_encrypt()
205 for (i = 0; i < data_len + IEEE80211_WEP_ICV_LEN; i++) in ieee80211_wep_decrypt_data()
209 if (memcmp(&crc, data + data_len, IEEE80211_WEP_ICV_LEN) != 0) in ieee80211_wep_decrypt_data()
241 if (skb->len < hdrlen + IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN) in ieee80211_wep_decrypt()
244 len = skb->len - hdrlen - IEEE80211_WEP_IV_LEN - IEEE80211_WEP_ICV_LEN; in ieee80211_wep_decrypt()
265 skb_trim(skb, skb->len - IEEE80211_WEP_ICV_LEN); in ieee80211_wep_decrypt()
297 pskb_trim(rx->skb, rx->skb->len - IEEE80211_WEP_ICV_LEN)) in ieee80211_crypto_wep_decrypt()
Dkey.c415 key->conf.icv_len = IEEE80211_WEP_ICV_LEN; in ieee80211_key_alloc()
Dutil.c1297 24 + 6 + extra_len + IEEE80211_WEP_ICV_LEN); in ieee80211_send_auth()
/Linux-v4.19/include/linux/
Dieee80211.h2522 #define IEEE80211_WEP_ICV_LEN 4 macro
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/pcie/
Dtx.c201 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN; in iwl_pcie_txq_update_byte_cnt_tbl()
/Linux-v4.19/drivers/net/wireless/ath/ath10k/
Dhtt_rx.c710 return IEEE80211_WEP_ICV_LEN; in ath10k_htt_rx_crypto_icv_len()