From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <dev-bounces@dpdk.org> Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id C7CF5A0096 for <public@inbox.dpdk.org>; Wed, 13 Mar 2019 20:06:58 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 021744C8E; Wed, 13 Mar 2019 20:06:58 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 0F2B22C17 for <dev@dpdk.org>; Wed, 13 Mar 2019 20:06:55 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Mar 2019 12:06:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,475,1544515200"; d="scan'208";a="131393518" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga008.fm.intel.com with ESMTP; 13 Mar 2019 12:06:54 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 13 Mar 2019 12:06:54 -0700 Received: from lcsmsx152.ger.corp.intel.com (10.186.165.231) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 13 Mar 2019 12:06:54 -0700 Received: from HASMSX109.ger.corp.intel.com ([169.254.3.144]) by LCSMSX152.ger.corp.intel.com ([10.186.165.231]) with mapi id 14.03.0415.000; Wed, 13 Mar 2019 21:06:51 +0200 From: "Kusztal, ArkadiuszX" <arkadiuszx.kusztal@intel.com> To: Ayuj Verma <ayverma@marvell.com>, "akhil.goyal@nxp.com" <akhil.goyal@nxp.com> CC: "Trahe, Fiona" <fiona.trahe@intel.com>, Shally Verma <shallyv@marvell.com>, Sunila Sahu <ssahu@marvell.com>, "Kanaka Durga Kotamarthy" <kkotamarthy@marvell.com>, Arvind Desai <adesai@marvell.com>, "dev@dpdk.org" <dev@dpdk.org> Thread-Topic: [PATCH v2 0/3] adding rsa priv key feature flag Thread-Index: AQHUzqEHAOyD3J5P4k2kbBjbBi6kGKYKAaYA Date: Wed, 13 Mar 2019 19:06:51 +0000 Message-ID: <06EE24DD0B19E248B53F6DC8657831551B14AB4B@hasmsx109.ger.corp.intel.com> References: <20190227133258.8962-1-ayverma@marvell.com> In-Reply-To: <20190227133258.8962-1-ayverma@marvell.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [10.104.12.177] Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/3] adding rsa priv key feature flag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> Message-ID: <20190313190651.2xW6NQV17eE9TnbML1JMi-xcr5WOQSWSGU1pqLMlwKs@z> V2 will be needed as test directory apparently changed its location. Iam acking anyway. > -----Original Message----- > From: Ayuj Verma [mailto:ayverma@marvell.com] > Sent: Wednesday, February 27, 2019 2:34 PM > To: akhil.goyal@nxp.com > Cc: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>; Trahe, Fiona > <fiona.trahe@intel.com>; Shally Verma <shallyv@marvell.com>; Sunila Sahu > <ssahu@marvell.com>; Kanaka Durga Kotamarthy > <kkotamarthy@marvell.com>; Arvind Desai <adesai@marvell.com>; > dev@dpdk.org; Ayuj Verma <ayverma@marvell.com> > Subject: [PATCH v2 0/3] adding rsa priv key feature flag >=20 > Some PMDs can only support RSA private key operations using CRT > (quintuple) or exponent key only. Thus it is required to add feature flag= (ff) in > PMD to reflect which key type is supported to perform sign and decrypt op= s. >=20 > Thus add feature flags RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_EXP > and RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT which would mean support > to perform a private key op using CRT keys (quintuple) or exponent or bot= h. >=20 > App should query PMD feature flag to check if specific key type is suppor= ted > and call operation with relevant key type. >=20 > Ayuj Verma (3): > lib/cryptodev: add rsa priv key feature flag > crypto/openssl: set rsa private op feature flag > test/crypto: check for rsa key type feature flag >=20 > drivers/crypto/openssl/rte_openssl_pmd.c | 4 +++- > lib/librte_cryptodev/rte_cryptodev.c | 4 ++++ > lib/librte_cryptodev/rte_cryptodev.h | 4 ++++ > test/test/test_cryptodev_asym.c | 26 ++++++++++++++++++++++++ > 4 files changed, 37 insertions(+), 1 deletion(-) >=20 > -- > 2.20.0 Series-acked-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>