Lines Matching refs:ehsz
743 int ehsz, len, tailen, nsg, rc; in tipc_aead_encrypt() local
801 ehsz = tipc_ehdr_size(ehdr); in tipc_aead_encrypt()
803 aead_request_set_ad(req, ehsz); in tipc_aead_encrypt()
804 aead_request_set_crypt(req, sg, sg, len - ehsz, iv); in tipc_aead_encrypt()
895 int ehsz, nsg, rc; in tipc_aead_decrypt() local
935 ehsz = tipc_ehdr_size(ehdr); in tipc_aead_decrypt()
937 aead_request_set_ad(req, ehsz); in tipc_aead_decrypt()
938 aead_request_set_crypt(req, sg, sg, skb->len - ehsz, iv); in tipc_aead_decrypt()
1012 int ehsz; in tipc_ehdr_validate() local
1020 ehsz = tipc_ehdr_size(ehdr); in tipc_ehdr_validate()
1021 if (unlikely(!pskb_may_pull(skb, ehsz))) in tipc_ehdr_validate()
1023 if (unlikely(skb->len <= ehsz + TIPC_AES_GCM_TAG_SIZE)) in tipc_ehdr_validate()
1047 int ehsz; in tipc_ehdr_build() local
1050 ehsz = (user != LINK_CONFIG) ? EHDR_SIZE : EHDR_CFG_SIZE; in tipc_ehdr_build()
1051 WARN_ON(skb_headroom(skb) < ehsz); in tipc_ehdr_build()
1052 ehdr = (struct tipc_ehdr *)skb_push(skb, ehsz); in tipc_ehdr_build()
1096 return ehsz; in tipc_ehdr_build()