Lines Matching refs:icv
56 u8 *icv)
60 req = (void *)PTR_ALIGN(icv + crypto_ahash_digestsize(ahash),
77 * into IP header for icv calculation. Options are already checked
122 u8 *icv;
132 icv = ah_tmp_icv(ahp->ahash, iph, ihl);
133 memcpy(ah->auth_data, icv, ahp->icv_trunc_len);
152 u8 *icv;
185 icv = ah_tmp_icv(ahash, seqhi, seqhi_len);
186 req = ah_tmp_req(ahash, icv);
234 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len);
249 memcpy(ah->auth_data, icv, ahp->icv_trunc_len);
268 u8 *icv;
282 icv = ah_tmp_icv(ahp->ahash, auth_data, ahp->icv_trunc_len);
284 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0;
310 u8 *icv;
377 icv = ah_tmp_icv(ahash, auth_data, ahp->icv_trunc_len);
378 req = ah_tmp_req(ahash, icv);
409 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len);
422 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0;