Searched refs:ahreq (Results 1 - 4 of 4) sorted by relevance

/linux-master/crypto/
H A Dauthenc.c119 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ictx->reqoff); local
124 scatterwalk_map_and_copy(ahreq->result, req->dst,
140 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ictx->reqoff); local
144 ahash_request_set_tfm(ahreq, auth);
145 ahash_request_set_crypt(ahreq, req->dst, hash,
147 ahash_request_set_callback(ahreq, flags,
150 err = crypto_ahash_digest(ahreq);
233 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ictx->reqoff); local
237 u8 *ihash = ahreq->result + authsize;
240 scatterwalk_map_and_copy(ihash, req->src, ahreq
282 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ictx->reqoff); local
[all...]
H A Dauthencesn.c123 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff); local
141 ahash_request_set_tfm(ahreq, auth);
142 ahash_request_set_crypt(ahreq, dst, hash, assoclen + cryptlen);
143 ahash_request_set_callback(ahreq, flags,
146 return crypto_ahash_digest(ahreq) ?:
267 struct ahash_request *ahreq = (void *)(areq_ctx->tail + ctx->reqoff); local
300 ahash_request_set_tfm(ahreq, auth);
301 ahash_request_set_crypt(ahreq, dst, ohash, assoclen + cryptlen);
302 ahash_request_set_callback(ahreq, aead_request_flags(req),
305 err = crypto_ahash_digest(ahreq);
[all...]
H A Dgcm.c72 struct ahash_request ahreq; member in union:crypto_gcm_req_priv_ctx::__anon130
208 struct ahash_request *ahreq = &pctx->u.ahreq; local
210 ahash_request_set_callback(ahreq, flags, compl, req);
211 ahash_request_set_crypt(ahreq, src, NULL, len);
213 return crypto_ahash_update(ahreq);
226 struct ahash_request *ahreq = &pctx->u.ahreq; local
234 ahash_request_set_callback(ahreq, flags, gcm_hash_len_done, req);
235 ahash_request_set_crypt(ahreq,
399 struct ahash_request *ahreq = &pctx->u.ahreq; local
[all...]
H A Dccm.c48 struct ahash_request ahreq; member in union:crypto_ccm_req_priv_ctx::__anon124
175 struct ahash_request *ahreq = &pctx->ahreq; local
200 ahash_request_set_tfm(ahreq, ctx->mac);
201 ahash_request_set_callback(ahreq, pctx->flags, NULL, NULL);
202 ahash_request_set_crypt(ahreq, sg, NULL, assoclen + ilen + 16);
203 err = crypto_ahash_init(ahreq);
206 err = crypto_ahash_update(ahreq);
222 ahash_request_set_crypt(ahreq, plain, odata, cryptlen);
223 err = crypto_ahash_finup(ahreq);
[all...]

Completed in 113 milliseconds