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 DD1C94546C; Sat, 15 Jun 2024 13:53:33 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CB2B1402BB; Sat, 15 Jun 2024 13:53:33 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 8B9BF40269 for ; Sat, 15 Jun 2024 13:53:32 +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 45FBrW50008962 for ; Sat, 15 Jun 2024 04:53:32 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=upfostanRdYHH4ehvsqgRmQ 8fvCtdXEF8ZlE4Fbyi1o=; b=UFpZnF9s2KGPXSs75Y67gFBUvqyEUvaGOvumnIM 2OkvNsoqJ3MoJjw3D2smGv8Tsq+zIvX5DWjzH6o4Bot1RgQCjwFPU6ydbQnwc2jt TdvOxQPQePlmPs/5yE0iTZ8/JZiHG3F4NsYTD5u+lxPtsI29v9YBFvg9y0TAKVsS xoxpvZ0V7PrJPFpAESr4jQNw70ci2IsDBW//iK06eiGZABQT8zlw5U/VF9kpkgSF z4NfTr2sQw6KA/nEjqlfM8oPRDBgME9Hjap4Sf5FUZZxNubx+hSTvXA9fkmxrgX7 KxKOoyGZOzHPSrai7rQZVV9twvtRMPZgH/CWPHc7zUuVbww== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3ysafh001j-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Sat, 15 Jun 2024 04:53:31 -0700 (PDT) Received: from DC6WP-EXCH02.marvell.com (10.76.176.209) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Sat, 15 Jun 2024 04:53:31 -0700 Received: from maili.marvell.com (10.69.176.80) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Sat, 15 Jun 2024 04:53:31 -0700 Received: from BG-LT91401.marvell.com (unknown [10.28.168.34]) by maili.marvell.com (Postfix) with ESMTP id 5271A5B6944; Sat, 15 Jun 2024 04:53:29 -0700 (PDT) From: Gowrishankar Muthukrishnan To: CC: Anoob Joseph , Akhil Goyal , Gowrishankar Muthukrishnan Subject: [PATCH v1 0/6] app/crypto-perf: add asymmetric crypto tests Date: Sat, 15 Jun 2024 17:23:01 +0530 Message-ID: <20240615115309.2678-1-gmuthukrishn@marvell.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: YzPkgGFuQKPlJL41xcGAji73UmU_aMYV X-Proofpoint-GUID: YzPkgGFuQKPlJL41xcGAji73UmU_aMYV 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-15_08,2024-06-14_03,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