Lines Matching refs:dst
34 struct scatterlist dst[2]; member
122 scatterwalk_map_and_copy(ahreq->result, req->dst, in authenc_geniv_ahash_done()
143 ahash_request_set_crypt(ahreq, req->dst, hash, in crypto_authenc_genicv()
152 scatterwalk_map_and_copy(hash, req->dst, req->assoclen + req->cryptlen, in crypto_authenc_genicv()
182 struct scatterlist *src, *dst; in crypto_authenc_encrypt() local
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()
190 dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, 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
226 dst = src; in crypto_authenc_decrypt_tail()
228 if (req->src != req->dst) in crypto_authenc_decrypt_tail()
229 dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, req->assoclen); in crypto_authenc_decrypt_tail()
234 skcipher_request_set_crypt(skreq, src, dst, in crypto_authenc_decrypt_tail()