Lines Matching refs:ehsz
732 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()
886 int ehsz, nsg, rc; in tipc_aead_decrypt() local
932 ehsz = tipc_ehdr_size(ehdr); in tipc_aead_decrypt()
934 aead_request_set_ad(req, ehsz); in tipc_aead_decrypt()
935 aead_request_set_crypt(req, sg, sg, skb->len - ehsz, iv); in tipc_aead_decrypt()
1009 int ehsz; in tipc_ehdr_validate() local
1017 ehsz = tipc_ehdr_size(ehdr); in tipc_ehdr_validate()
1018 if (unlikely(!pskb_may_pull(skb, ehsz))) in tipc_ehdr_validate()
1020 if (unlikely(skb->len <= ehsz + TIPC_AES_GCM_TAG_SIZE)) in tipc_ehdr_validate()
1044 int ehsz; in tipc_ehdr_build() local
1047 ehsz = (user != LINK_CONFIG) ? EHDR_SIZE : EHDR_CFG_SIZE; in tipc_ehdr_build()
1048 WARN_ON(skb_headroom(skb) < ehsz); in tipc_ehdr_build()
1049 ehdr = (struct tipc_ehdr *)skb_push(skb, ehsz); in tipc_ehdr_build()
1093 return ehsz; in tipc_ehdr_build()