Lines Matching refs:cryptlen
136 unsigned int cryptlen) in format_input() argument
154 return set_msg_len(info + 16 - l, cryptlen, l); in format_input()
177 unsigned int cryptlen) in crypto_ccm_auth() argument
190 err = format_input(odata, req, cryptlen); in crypto_ccm_auth()
226 cryptlen += ilen; in crypto_ccm_auth()
229 ahash_request_set_crypt(ahreq, plain, pctx->odata, cryptlen); in crypto_ccm_auth()
244 req->assoclen + req->cryptlen, in crypto_ccm_encrypt_done()
300 unsigned int cryptlen = req->cryptlen; in crypto_ccm_encrypt() local
309 err = crypto_ccm_auth(req, sg_next(pctx->src), cryptlen); in crypto_ccm_encrypt()
320 skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv); in crypto_ccm_encrypt()
326 scatterwalk_map_and_copy(odata, sg_next(dst), cryptlen, in crypto_ccm_encrypt()
338 unsigned int cryptlen = req->cryptlen - authsize; in crypto_ccm_decrypt_done() local
346 err = crypto_ccm_auth(req, dst, cryptlen); in crypto_ccm_decrypt_done()
361 unsigned int cryptlen = req->cryptlen; in crypto_ccm_decrypt() local
367 cryptlen -= authsize; in crypto_ccm_decrypt()
373 scatterwalk_map_and_copy(authtag, sg_next(pctx->src), cryptlen, in crypto_ccm_decrypt()
385 skcipher_request_set_crypt(skreq, pctx->src, dst, cryptlen + 16, iv); in crypto_ccm_decrypt()
390 err = crypto_ccm_auth(req, sg_next(dst), cryptlen); in crypto_ccm_decrypt()
680 req->cryptlen, iv); in crypto_rfc4309_crypt()