Lines Matching refs:dst
36 struct scatterlist dst[2]; member
134 scatterwalk_map_and_copy(ahreq->result, req->dst, in authenc_geniv_ahash_done()
158 ahash_request_set_crypt(ahreq, req->dst, hash, in crypto_authenc_genicv()
167 scatterwalk_map_and_copy(hash, req->dst, req->assoclen + req->cryptlen, in crypto_authenc_genicv()
196 skcipher_request_set_crypt(skreq, req->src, req->dst, req->assoclen, in crypto_authenc_copy_assoc()
213 struct scatterlist *src, *dst; in crypto_authenc_encrypt() local
217 dst = src; in crypto_authenc_encrypt()
219 if (req->src != req->dst) { in crypto_authenc_encrypt()
224 dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, req->assoclen); in crypto_authenc_encrypt()
230 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv); in crypto_authenc_encrypt()
252 struct scatterlist *src, *dst; in crypto_authenc_decrypt_tail() local
260 dst = src; in crypto_authenc_decrypt_tail()
262 if (req->src != req->dst) in crypto_authenc_decrypt_tail()
263 dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, req->assoclen); in crypto_authenc_decrypt_tail()
268 skcipher_request_set_crypt(skreq, src, dst, in crypto_authenc_decrypt_tail()