Lines Matching refs:seqhilen
92 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int seqhilen) in esp_tmp_iv() argument
95 PTR_ALIGN((u8 *)tmp + seqhilen, in esp_tmp_iv()
96 crypto_aead_alignmask(aead) + 1) : tmp + seqhilen; in esp_tmp_iv()
162 int seqhilen; in esp6_output() local
191 seqhilen = 0; in esp6_output()
195 seqhilen += sizeof(__be32); in esp6_output()
196 assoclen += seqhilen; in esp6_output()
199 tmp = esp_alloc_tmp(aead, nfrags + sglists, seqhilen); in esp6_output()
206 iv = esp_tmp_iv(aead, tmp, seqhilen); in esp6_output()
242 sg_set_buf(asg + 1, seqhi, seqhilen); in esp6_output()
331 int seqhilen; in esp6_input() local
359 seqhilen = 0; in esp6_input()
363 seqhilen += sizeof(__be32); in esp6_input()
364 assoclen += seqhilen; in esp6_input()
367 tmp = esp_alloc_tmp(aead, nfrags + sglists, seqhilen); in esp6_input()
373 iv = esp_tmp_iv(aead, tmp, seqhilen); in esp6_input()
392 sg_set_buf(asg + 1, seqhi, seqhilen); in esp6_input()