From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C8792454FF; Wed, 26 Jun 2024 10:48:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7FBF942E8C; Wed, 26 Jun 2024 10:48:29 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 741CE40649 for ; Wed, 26 Jun 2024 10:47:54 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 45Q5RfPC005327 for ; Wed, 26 Jun 2024 01:47:53 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=u pfostanRdYHH4ehvsqgRmQ8fvCtdXEF8ZlE4Fbyi1o=; b=Yq6RC7Tn36gKvabBr fmi1EtMMO8d4IPR2U7YBhBp8TTwnT9WVHJNp/uHwnTZ7WI9yZTswCJgsEA9H8MIM OzpElOnfsbc/dVd8/dF9CBgh+xE/zpj0DuGyai1FOF5Ic8tc/QGbrtA//JTtdvim Uvz7YvtZ0XAk7bHXIliP3wwxjZTki1SsNCHNWIJ8Z8UxwY6iqZbsAjdiy1ZnFsDn w8tJT5wgD6FJDTPeJkyFjtuDy5qa0rHWoGnkCgsNujG/0D6E1PJ/qWOuqlSHO0B9 q3fsfxFSCkts3GdZdJLmjxgTkyBgTyEyL6PfHbvM5cH6vT8n5q1PyJuUL04NwPcL DLucg== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 400cur8jg2-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Wed, 26 Jun 2024 01:47:53 -0700 (PDT) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Wed, 26 Jun 2024 01:47:52 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Wed, 26 Jun 2024 01:47:52 -0700 Received: from BG-LT91401.marvell.com (BG-LT91401.marvell.com [10.28.168.34]) by maili.marvell.com (Postfix) with ESMTP id CDB323F707B; Wed, 26 Jun 2024 01:47:50 -0700 (PDT) From: Gowrishankar Muthukrishnan To: CC: Anoob Joseph , Akhil Goyal , Gowrishankar Muthukrishnan Subject: [PATCH v2 0/6] app/crypto-perf: add asymmetric crypto tests Date: Wed, 26 Jun 2024 14:17:39 +0530 Message-ID: <20240626084747.1595-1-gmuthukrishn@marvell.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20240615115309.2678-1-gmuthukrishn@marvell.com> References: <20240615115309.2678-1-gmuthukrishn@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: 0we9q3hrZyg7IHW08lBN5ZPwe24EXASo X-Proofpoint-GUID: 0we9q3hrZyg7IHW08lBN5ZPwe24EXASo X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.28.16 definitions=2024-06-26_03,2024-06-25_01,2024-05-17_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This patch series adds below asymmetric tests in crypto-perf tool: * MODEX group tests (RFC 3526) * SM2 tests * ECDSA P256R1 tests Akhil Goyal (1): app/crypto-perf: support SM2 Gowrishankar Muthukrishnan (5): app/crypto-perf: add modex groups test app/crypto-perf: remove redundant local varriable app/crypto-perf: fix result location for asymmetric test app/crypto-perf: add function to check asymmetric operation app/crypto-perf: support ECDSA app/test-crypto-perf/cperf_ops.c | 135 +++- app/test-crypto-perf/cperf_options.h | 8 + app/test-crypto-perf/cperf_options_parsing.c | 61 +- app/test-crypto-perf/cperf_test_common.c | 19 +- app/test-crypto-perf/cperf_test_common.h | 2 + app/test-crypto-perf/cperf_test_latency.c | 21 +- app/test-crypto-perf/cperf_test_throughput.c | 2 +- app/test-crypto-perf/cperf_test_vectors.c | 773 ++++++++++++++++++- app/test-crypto-perf/cperf_test_vectors.h | 41 +- app/test-crypto-perf/cperf_test_verify.c | 2 +- app/test-crypto-perf/main.c | 87 ++- doc/guides/tools/cryptoperf.rst | 7 + 12 files changed, 1131 insertions(+), 27 deletions(-) -- 2.25.1