Lines Matching defs:cryptlen
92 unsigned int cryptlen = req->cryptlen;
98 memcpy_from_sglist(tmp + 1, dst, assoclen + cryptlen, 4);
101 memcpy_to_sglist(dst, assoclen + cryptlen, hash, authsize);
124 unsigned int cryptlen = req->cryptlen;
134 memcpy_to_sglist(dst, assoclen + cryptlen, tmp + 1, 4);
140 ahash_request_set_crypt(ahreq, dst, hash, assoclen + cryptlen);
168 unsigned int cryptlen = req->cryptlen;
188 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
208 unsigned int cryptlen = req->cryptlen - authsize;
221 memcpy_from_sglist(tmp + 1, dst, assoclen + cryptlen, 4);
240 skcipher_request_set_crypt(skreq, src, dst, cryptlen, req->iv);
263 unsigned int cryptlen = req->cryptlen;
276 cryptlen -= authsize;
277 memcpy_from_sglist(ihash, req->src, assoclen + cryptlen, authsize);
283 memcpy_to_sglist(dst, assoclen + cryptlen, tmp + 1, 4);
287 memcpy_to_sglist(dst, assoclen + cryptlen - 4, tmp + 1, 4);
291 memcpy_sglist(dst, src, assoclen + cryptlen - 8);
296 ahash_request_set_crypt(ahreq, dst, ohash, assoclen + cryptlen);