Lines Matching refs:cryptlen
71 totallen = req->cryptlen + req->assoclen;
80 totallen = req->cryptlen + req->assoclen - ctx->authsize;
124 totallen = rctx->cryptlen + assoclen;
152 sg = qce_sgtable_add(&rctx->dst_tbl, msg_sg, rctx->cryptlen);
157 totallen = rctx->cryptlen + rctx->assoclen;
192 unsigned int adata_header_len, cryptlen, totallen;
198 cryptlen = rctx->cryptlen + ctx->authsize;
200 cryptlen = rctx->cryptlen;
201 totallen = cryptlen + req->assoclen;
257 sg = qce_sgtable_add(&rctx->src_tbl, msg_sg, cryptlen);
278 totallen = cryptlen + rctx->assoclen;
310 totallen = rctx->cryptlen + rctx->assoclen;
336 unsigned int cryptlen;
344 cryptlen = rctx->cryptlen + ctx->authsize;
346 rctx->src_nents = sg_nents_for_len(req->src, cryptlen);
352 rctx->src_nents = sg_nents_for_len(req->src, cryptlen);
388 * The crypto framework encodes cryptlen as unsigned int. Thus, even though
394 memcpy(&msg_len[0], &rctx->cryptlen, 4);
514 rctx->cryptlen = req->cryptlen;
516 rctx->cryptlen = req->cryptlen - ctx->authsize;
519 if (!rctx->cryptlen) {
533 req->dst, req->cryptlen, req->iv);
544 if (IS_CBC(rctx->flags) && !IS_ALIGNED(rctx->cryptlen, blocksize))