Lines Matching refs:cryptlen

111 	unsigned int cryptlen = req->cryptlen;  in crypto_authenc_esn_genicv_tail()  local
117 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0); in crypto_authenc_esn_genicv_tail()
120 scatterwalk_map_and_copy(hash, dst, assoclen + cryptlen, authsize, 1); in crypto_authenc_esn_genicv_tail()
145 unsigned int cryptlen = req->cryptlen; in crypto_authenc_esn_genicv() local
155 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1); in crypto_authenc_esn_genicv()
161 ahash_request_set_crypt(ahreq, dst, hash, assoclen + cryptlen); in crypto_authenc_esn_genicv()
201 unsigned int cryptlen = req->cryptlen; in crypto_authenc_esn_encrypt() local
221 ablkcipher_request_set_crypt(abreq, src, dst, cryptlen, req->iv); in crypto_authenc_esn_encrypt()
242 unsigned int cryptlen = req->cryptlen - authsize; in crypto_authenc_esn_decrypt_tail() local
250 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 0); in crypto_authenc_esn_decrypt_tail()
262 ablkcipher_request_set_crypt(abreq, dst, dst, cryptlen, req->iv); in crypto_authenc_esn_decrypt_tail()
287 unsigned int cryptlen = req->cryptlen; in crypto_authenc_esn_decrypt() local
293 cryptlen -= authsize; in crypto_authenc_esn_decrypt()
296 err = crypto_authenc_esn_copy(req, assoclen + cryptlen); in crypto_authenc_esn_decrypt()
301 scatterwalk_map_and_copy(ihash, req->src, assoclen + cryptlen, in crypto_authenc_esn_decrypt()
310 scatterwalk_map_and_copy(tmp + 1, dst, assoclen + cryptlen, 4, 1); in crypto_authenc_esn_decrypt()
316 ahash_request_set_crypt(ahreq, dst, ohash, assoclen + cryptlen); in crypto_authenc_esn_decrypt()