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()
291 remain = gcm_remain(gctx->cryptlen); in gcm_hash_crypt_continue()
320 if (gctx->cryptlen) in gcm_hash_assoc_remain_continue()
322 gctx->src, gctx->cryptlen, flags) ?: in gcm_hash_assoc_remain_continue()
417 req->assoclen + req->cryptlen, in gcm_enc_copy_hash()
428 gctx->cryptlen = req->cryptlen; in gcm_encrypt_continue()
456 crypto_gcm_init_crypt(req, req->cryptlen); in crypto_gcm_encrypt()
470 unsigned int cryptlen = req->cryptlen - authsize; in crypto_gcm_verify() local
474 req->assoclen + cryptlen, authsize, 0); in crypto_gcm_verify()
494 crypto_gcm_init_crypt(req, gctx->cryptlen); in gcm_dec_hash_continue()
505 unsigned int cryptlen = req->cryptlen; in crypto_gcm_decrypt() local
508 cryptlen -= authsize; in crypto_gcm_decrypt()
513 gctx->cryptlen = cryptlen; in crypto_gcm_decrypt()
755 req->cryptlen, iv); in crypto_rfc4106_crypt()
951 aead_request_set_ad(subreq, req->assoclen + req->cryptlen - in crypto_rfc4543_crypt()
952 subreq->cryptlen); in crypto_rfc4543_crypt()
962 unsigned int nbytes = req->assoclen + req->cryptlen - in crypto_rfc4543_copy_src_to_dst()