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()
166 int seqhilen; in esp6_output() local
196 seqhilen = 0; in esp6_output()
199 seqhilen += sizeof(__be32); in esp6_output()
200 assoclen += seqhilen; in esp6_output()
203 tmp = esp_alloc_tmp(aead, nfrags, seqhilen); in esp6_output()
210 iv = esp_tmp_iv(aead, tmp, seqhilen); in esp6_output()
364 int seqhilen; in esp6_input() local
390 seqhilen = 0; in esp6_input()
393 seqhilen += sizeof(__be32); in esp6_input()
394 assoclen += seqhilen; in esp6_input()
397 tmp = esp_alloc_tmp(aead, nfrags, seqhilen); in esp6_input()
403 iv = esp_tmp_iv(aead, tmp, seqhilen); in esp6_input()