Lines Matching refs:cryptlen
58 unsigned int cryptlen; member
178 unsigned int cryptlen) in crypto_gcm_init_crypt() argument
190 cryptlen + sizeof(pctx->auth_tag), in crypto_gcm_init_crypt()
231 lengths.b = cpu_to_be64(gctx->cryptlen * 8); in gcm_hash_len()
292 remain = gcm_remain(gctx->cryptlen); in gcm_hash_crypt_continue()
321 if (gctx->cryptlen) in gcm_hash_assoc_remain_continue()
323 gctx->src, gctx->cryptlen, flags) ?: in gcm_hash_assoc_remain_continue()
419 req->assoclen + req->cryptlen, in gcm_enc_copy_hash()
430 gctx->cryptlen = req->cryptlen; in gcm_encrypt_continue()
458 crypto_gcm_init_crypt(req, req->cryptlen); in crypto_gcm_encrypt()
472 unsigned int cryptlen = req->cryptlen - authsize; in crypto_gcm_verify() local
476 req->assoclen + cryptlen, authsize, 0); in crypto_gcm_verify()
496 crypto_gcm_init_crypt(req, gctx->cryptlen); in gcm_dec_hash_continue()
507 unsigned int cryptlen = req->cryptlen; in crypto_gcm_decrypt() local
510 cryptlen -= authsize; in crypto_gcm_decrypt()
515 gctx->cryptlen = cryptlen; in crypto_gcm_decrypt()
757 req->cryptlen, iv); in crypto_rfc4106_crypt()
953 aead_request_set_ad(subreq, req->assoclen + req->cryptlen - in crypto_rfc4543_crypt()
954 subreq->cryptlen); in crypto_rfc4543_crypt()
964 unsigned int nbytes = req->assoclen + req->cryptlen - in crypto_rfc4543_copy_src_to_dst()