Home
last modified time | relevance | path

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

/net/mac80211/
Daes_gmac.c25 if (data_len < GMAC_MIC_LEN) in ieee80211_aes_gmac()
28 aead_req = kzalloc(reqsize + GMAC_MIC_LEN + GMAC_AAD_LEN, GFP_ATOMIC); in ieee80211_aes_gmac()
33 __aad = zero + GMAC_MIC_LEN; in ieee80211_aes_gmac()
38 sg_set_buf(&sg[1], data, data_len - GMAC_MIC_LEN); in ieee80211_aes_gmac()
39 sg_set_buf(&sg[2], zero, GMAC_MIC_LEN); in ieee80211_aes_gmac()
40 sg_set_buf(&sg[3], mic, GMAC_MIC_LEN); in ieee80211_aes_gmac()
68 err = crypto_aead_setauthsize(tfm, GMAC_MIC_LEN); in ieee80211_aes_gmac_key_setup()
Daes_gmac.h12 #define GMAC_MIC_LEN 16 macro
Dwpa.c1210 mic = kmalloc(GMAC_MIC_LEN, GFP_ATOMIC); in ieee80211_crypto_aes_gmac_decrypt()