Lines Matching full:icv
110 u8 *icv) in ah_tmp_req() argument
114 req = (void *)PTR_ALIGN(icv + crypto_ahash_digestsize(ahash), in ah_tmp_req()
313 u8 *icv; in ah6_output_done() local
332 icv = ah_tmp_icv(seqhi, seqhi_len); in ah6_output_done()
334 memcpy(ah->auth_data, icv, ahp->icv_trunc_len); in ah6_output_done()
349 u8 *icv; in ah6_output() local
389 icv = ah_tmp_icv(seqhi, seqhi_len); in ah6_output()
390 req = ah_tmp_req(ahash, icv); in ah6_output()
442 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len); in ah6_output()
457 memcpy(ah->auth_data, icv, ahp->icv_trunc_len); in ah6_output()
471 u8 *icv; in ah6_input_done() local
490 icv = ah_tmp_icv(seqhi, seqhi_len); in ah6_input_done()
492 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0; in ah6_input_done()
530 u8 *icv; in ah6_input() local
598 icv = ah_tmp_icv(seqhi, seqhi_len); in ah6_input()
599 req = ah_tmp_req(ahash, icv); in ah6_input()
628 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len); in ah6_input()
641 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0; in ah6_input()