Searched refs:CCMP_MIC_LEN (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/drivers/staging/rtl8192e/ |
H A D | rtllib_crypt_ccmp.c | 26 #define CCMP_MIC_LEN 8 macro 160 skb_tailroom(skb) < CCMP_MIC_LEN || in rtllib_ccmp_encrypt() 200 skb_put(skb, CCMP_MIC_LEN); in rtllib_ccmp_encrypt() 204 data_len + CCMP_MIC_LEN); in rtllib_ccmp_encrypt() 228 if (skb->len < hdr_len + CCMP_HDR_LEN + CCMP_MIC_LEN) { in rtllib_ccmp_decrypt() 308 skb_trim(skb, skb->len - CCMP_MIC_LEN); in rtllib_ccmp_decrypt() 334 if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) || in rtllib_ccmp_set_key() 394 .extra_mpdu_postfix_len = CCMP_MIC_LEN,
|
/openbmc/linux/drivers/staging/rtl8192u/ieee80211/ |
H A D | ieee80211_crypt_ccmp.c | 31 #define CCMP_MIC_LEN 8 macro 170 skb_tailroom(skb) < CCMP_MIC_LEN || in ieee80211_ccmp_encrypt() 211 skb_put(skb, CCMP_MIC_LEN); in ieee80211_ccmp_encrypt() 216 data_len + CCMP_MIC_LEN); in ieee80211_ccmp_encrypt() 238 if (skb->len < hdr_len + CCMP_HDR_LEN + CCMP_MIC_LEN) { in ieee80211_ccmp_decrypt() 323 skb_trim(skb, skb->len - CCMP_MIC_LEN); in ieee80211_ccmp_decrypt() 348 if (crypto_aead_setauthsize(tfm, CCMP_MIC_LEN) || in ieee80211_ccmp_set_key() 409 .extra_postfix_len = CCMP_MIC_LEN,
|
/openbmc/linux/net/wireless/ |
H A D | lib80211_crypt_ccmp.c | 35 #define CCMP_MIC_LEN 8 macro 201 if (skb_tailroom(skb) < CCMP_MIC_LEN || skb->len < hdr_len) in lib80211_ccmp_encrypt() 216 skb_put(skb, CCMP_MIC_LEN); in lib80211_ccmp_encrypt() 221 data_len + CCMP_MIC_LEN); in lib80211_ccmp_encrypt() 267 if (skb->len < hdr_len + CCMP_HDR_LEN + CCMP_MIC_LEN) { in lib80211_ccmp_decrypt() 342 skb_trim(skb, skb->len - CCMP_MIC_LEN); in lib80211_ccmp_decrypt() 368 if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) || in lib80211_ccmp_set_key() 433 .extra_mpdu_postfix_len = CCMP_MIC_LEN,
|