Searched refs:b_0 (Results 1 - 4 of 4) sorted by relevance

/linux-master/net/mac80211/
H A Daes_ccm.h22 u8 *b_0, u8 *aad, u8 *data,
25 return aead_encrypt(tfm, b_0, aad + 2,
32 u8 *b_0, u8 *aad, u8 *data,
35 return aead_decrypt(tfm, b_0, aad + 2,
21 ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, u8 *data, size_t data_len, u8 *mic) argument
31 ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, u8 *data, size_t data_len, u8 *mic) argument
H A Daead_api.h13 int aead_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
17 int aead_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
H A Daead_api.c18 int aead_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, size_t aad_len, argument
41 aead_request_set_crypt(aead_req, sg, sg, data_len, b_0);
50 int aead_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, size_t aad_len, argument
76 aead_request_set_crypt(aead_req, sg, sg, data_len + mic_len, b_0);
H A Dwpa.c316 * need that in CCMP also for b_0.
379 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad, argument
387 * from this vector b_0. We only set L := 1 here to indicate that the
392 b_0[0] = 0x1;
397 b_0[1] = qos_tid | (ieee80211_is_mgmt(hdr->frame_control) << 4);
398 memcpy(&b_0[2], hdr->addr2, ETH_ALEN);
399 memcpy(&b_0[8], pn, IEEE80211_CCMP_PN_LEN);
437 u8 b_0[AES_BLOCK_SIZE]; local
490 ccmp_special_blocks(skb, pn, b_0, aad,
492 return ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, b_0, aa
567 u8 b_0[AES_BLOCK_SIZE]; local
[all...]

Completed in 126 milliseconds