Lines Matching full:iv
74 * Extend frame length to include IV/EIV/ICV/MMIC, in rt2x00crypto_tx_overhead()
98 /* Copy IV/EIV data */ in rt2x00crypto_tx_copy_iv()
99 memcpy(skbdesc->iv, skb->data + txdesc->iv_offset, txdesc->iv_len); in rt2x00crypto_tx_copy_iv()
109 /* Copy IV/EIV data */ in rt2x00crypto_tx_remove_iv()
110 memcpy(skbdesc->iv, skb->data + txdesc->iv_offset, txdesc->iv_len); in rt2x00crypto_tx_remove_iv()
119 /* IV/EIV data has officially been stripped */ in rt2x00crypto_tx_remove_iv()
127 ((!!(skbdesc->iv[0])) * 4) + ((!!(skbdesc->iv[1])) * 4); in rt2x00crypto_tx_insert_iv()
137 /* Copy IV/EIV data */ in rt2x00crypto_tx_insert_iv()
138 memcpy(skb->data + header_length, skbdesc->iv, iv_len); in rt2x00crypto_tx_insert_iv()
140 /* IV/EIV data has returned into the frame */ in rt2x00crypto_tx_insert_iv()
155 * WEP64/WEP128: Provides IV & ICV in rt2x00crypto_rx_insert_iv()
156 * TKIP: Provides IV/EIV & ICV in rt2x00crypto_rx_insert_iv()
157 * AES: Provies IV/EIV & ICV in rt2x00crypto_rx_insert_iv()
184 * for the iv data. in rt2x00crypto_rx_insert_iv()
209 /* Copy IV/EIV data */ in rt2x00crypto_rx_insert_iv()
210 memcpy(skb->data + transfer, rxdesc->iv, iv_len); in rt2x00crypto_rx_insert_iv()
239 /* IV/EIV/ICV has been inserted into frame */ in rt2x00crypto_rx_insert_iv()