Lines Matching refs:src
33 struct scatterlist src[2]; member
182 struct scatterlist *src, *dst; in crypto_authenc_encrypt() local
185 src = scatterwalk_ffwd(areq_ctx->src, req->src, req->assoclen); in crypto_authenc_encrypt()
186 dst = src; in crypto_authenc_encrypt()
188 if (req->src != req->dst) { in crypto_authenc_encrypt()
189 memcpy_sglist(req->dst, req->src, req->assoclen); in crypto_authenc_encrypt()
196 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv); in crypto_authenc_encrypt()
218 struct scatterlist *src, *dst; in crypto_authenc_decrypt_tail() local
220 scatterwalk_map_and_copy(ihash, req->src, ahreq->nbytes, authsize, 0); in crypto_authenc_decrypt_tail()
225 src = scatterwalk_ffwd(areq_ctx->src, req->src, req->assoclen); in crypto_authenc_decrypt_tail()
226 dst = src; in crypto_authenc_decrypt_tail()
228 if (req->src != req->dst) in crypto_authenc_decrypt_tail()
234 skcipher_request_set_crypt(skreq, src, dst, in crypto_authenc_decrypt_tail()
267 ahash_request_set_crypt(ahreq, req->src, hash, in crypto_authenc_decrypt()