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 566EC46010; Tue, 7 Jan 2025 18:53:08 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E3F3C40150; Tue, 7 Jan 2025 18:53:07 +0100 (CET) Received: from mx0a-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id BA1E04014F for ; Tue, 7 Jan 2025 18:53:06 +0100 (CET) Received: from pps.filterd (m0431384.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 507GsvHm017122; Tue, 7 Jan 2025 09:53:05 -0800 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=h 2zBR0pgLtm3KuhtkJYJtgCaZio1wpzOMvJhM6QvetI=; b=QpISj0NPI9j+Hu5xM csieFP1poaZsXWcD9F1dIY3V8TQHYrUFMd8jqmEifC+5PB0FH0ZzNlGE6XeE5XmL qUiIk9Fs5jWjfi8WIABZFb92siYw/U/noxBoMUsR+NSP8bbQd7zdpQJML9VdtESD WjB+tt8Dhh7smCb2guM5eAJFwv4NxP65674d/MUhIcjev9xqug0DAEplNWrTF7jZ rCd2908z6g0S3DMpaCUPkRdz4Vf1qMD8DYyWkHx2yMbGp9du8iWDlgxcgafC5E33 wHjopz5id346V9qrCxYnVYjG4NF2VW3QGHPXNjv+Z/ZaEjqt5ZPIKKWjHrMQV3Jq rQ/mQ== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 44186h04jc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 07 Jan 2025 09:53:05 -0800 (PST) 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; Tue, 7 Jan 2025 09:53:04 -0800 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; Tue, 7 Jan 2025 09:53:04 -0800 Received: from IN-lckQE5Rwctls.marvell.com (IN-lckQE5Rwctls.marvell.com [10.28.163.68]) by maili.marvell.com (Postfix) with ESMTP id 4801B3F709B; Tue, 7 Jan 2025 09:53:01 -0800 (PST) From: Gowrishankar Muthukrishnan To: , Akhil Goyal , Maxime Coquelin , Chenbo Xia , Fan Zhang , Jay Zhou CC: , , Gowrishankar Muthukrishnan Subject: [v2 0/2] crypto/virtio: add RSA support Date: Tue, 7 Jan 2025 23:22:36 +0530 Message-ID: X-Mailer: git-send-email 2.37.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: SG1oW73xU-RbGpq3622EtWT-pqtqz6_f X-Proofpoint-GUID: SG1oW73xU-RbGpq3622EtWT-pqtqz6_f X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.687,Hydra:6.0.235,FMLib:17.0.607.475 definitions=2020-10-13_15,2020-10-13_02,2020-04-07_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 series adds RSA support in virtio crypto PMD. v2: - split from v1 series. Gowrishankar Muthukrishnan (2): crypto/virtio: add asymmetric RSA support test/crypto: add asymmetric tests for virtio PMD app/test/test_cryptodev_asym.c | 29 ++ app/test/test_cryptodev_rsa_test_vectors.h | 4 + .../virtio/virtio_crypto_capabilities.h | 19 + drivers/crypto/virtio/virtio_cryptodev.c | 384 +++++++++++++++--- drivers/crypto/virtio/virtio_rxtx.c | 226 ++++++++++- lib/cryptodev/cryptodev_pmd.h | 6 + lib/vhost/virtio_crypto.h | 80 ++++ 7 files changed, 680 insertions(+), 68 deletions(-) -- 2.25.1