From patchwork Mon Nov 29 09:51:55 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ramkumar Balu X-Patchwork-Id: 104740 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E4EB4A0C5A; Mon, 29 Nov 2021 11:41:14 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 30A91410EA; Mon, 29 Nov 2021 11:41:10 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id EE90E40689; Mon, 29 Nov 2021 10:53:08 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 1ASM0qvI030797; Mon, 29 Nov 2021 01:53:08 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=+wDGjS97/OEoiHz7/agVelTdOltH7RfBmA6SnuDXJZo=; b=DYVQjjObSaKw+LdUrwVIaUNmJ9azg3IGgdYZ24eE54OqpzUtX2Tnjqi5+gfoYEwbN5hm x34281qA0xP/8jTcI8IykCu3BPq+GeWzs4gotIM7vvgJ5DJ8+hiaCnz+/61mO5pbqZdx HcL5qFlZniSyKXoS8Sz0CApE3fTuRTpS3WUpD3biOLPKU04I88Ky2gL9e/IKiudPCxoa AhoV7E9z5e1jwFskqwg+zRBcjoIcoz2XQAMn3OMw8DbPjTJnAWqWnw+b3F9JTVsxvscW yxMqNkxOsjnYn63RW+OvMgI+7t58aiOOlLhOjW/sdLwuM6OlC/VkK4ZmJee32EyFwQI/ +g== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3cmgkpsuh8-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 29 Nov 2021 01:53:07 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Mon, 29 Nov 2021 01:53:06 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Mon, 29 Nov 2021 01:53:06 -0800 Received: from rbalu.marvell.com (unknown [10.29.53.29]) by maili.marvell.com (Postfix) with ESMTP id 94E023F7082; Mon, 29 Nov 2021 01:53:03 -0800 (PST) From: Ramkumar Balu To: Akhil Goyal , Anoob Joseph , Declan Doherty , Fan Zhang , Ankur Dwivedi , "Tejasree Kondoj" CC: , , Ramkumar Subject: [PATCH 1/5] cryptodev: fix RSA op cipher field description Date: Mon, 29 Nov 2021 09:51:55 +0000 Message-ID: <20211129095159.16376-2-rbalu@marvell.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211129095159.16376-1-rbalu@marvell.com> References: <20211129095159.16376-1-rbalu@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: 57EPZTvaUkqRxiSLA5dWZVwD4oUDz3cw X-Proofpoint-GUID: 57EPZTvaUkqRxiSLA5dWZVwD4oUDz3cw X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.0.607.475 definitions=2021-11-29_07,2021-11-28_01,2020-04-07_01 X-Mailman-Approved-At: Mon, 29 Nov 2021 11:41:08 +0100 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 From: Ramkumar The description for 'struct rte_crypto_rsa_op_param' failed to specify a field for returning the plaintext from RSA public key decryption. This patch fixes the rte_crypto_rsa_op_param description to specify 'cipher' field to be used for returning plaintext during RSA op_type == RTE_CRYPTO_ASYM_OP_VERIFY. Fixes: 501ed9c6611f ("cryptodev: add cipher field to RSA op") Cc: stable@dpdk.org Signed-off-by: Ramkumar --- lib/cryptodev/rte_crypto_asym.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/cryptodev/rte_crypto_asym.h b/lib/cryptodev/rte_crypto_asym.h index 9c866f553f..b99cf6843c 100644 --- a/lib/cryptodev/rte_crypto_asym.h +++ b/lib/cryptodev/rte_crypto_asym.h @@ -461,11 +461,12 @@ struct rte_crypto_rsa_op_param { * - to be decrypted for RSA private decrypt. * * Pointer to output data - * - for RSA public encrypt. + * - for RSA public encrypt/decrypt. * In this case the underlying array should have been allocated - * with enough memory to hold ciphertext output (i.e. must be + * with enough memory to hold ciphertext/plaintext output (i.e. must be * at least RSA key size). The cipher.length field should - * be 0 and will be overwritten by the PMD with the encrypted length. + * be 0 and will be overwritten by the PMD with the encrypted/decrypted + * length. * * All data is in Octet-string network byte order format. */