Lines Matching refs:ehsz
739 int ehsz, len, tailen, nsg, rc; in tipc_aead_encrypt() local
808 ehsz = tipc_ehdr_size(ehdr); in tipc_aead_encrypt()
810 aead_request_set_ad(req, ehsz); in tipc_aead_encrypt()
811 aead_request_set_crypt(req, sg, sg, len - ehsz, iv); in tipc_aead_encrypt()
893 int ehsz, nsg, rc; in tipc_aead_decrypt() local
933 ehsz = tipc_ehdr_size(ehdr); in tipc_aead_decrypt()
935 aead_request_set_ad(req, ehsz); in tipc_aead_decrypt()
936 aead_request_set_crypt(req, sg, sg, skb->len - ehsz, iv); in tipc_aead_decrypt()
1010 int ehsz; in tipc_ehdr_validate() local
1018 ehsz = tipc_ehdr_size(ehdr); in tipc_ehdr_validate()
1019 if (unlikely(!pskb_may_pull(skb, ehsz))) in tipc_ehdr_validate()
1021 if (unlikely(skb->len <= ehsz + TIPC_AES_GCM_TAG_SIZE)) in tipc_ehdr_validate()
1045 int ehsz; in tipc_ehdr_build() local
1048 ehsz = (user != LINK_CONFIG) ? EHDR_SIZE : EHDR_CFG_SIZE; in tipc_ehdr_build()
1049 WARN_ON(skb_headroom(skb) < ehsz); in tipc_ehdr_build()
1050 ehdr = (struct tipc_ehdr *)skb_push(skb, ehsz); in tipc_ehdr_build()
1094 return ehsz; in tipc_ehdr_build()