From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E9878A0471 for ; Wed, 17 Jul 2019 18:00:13 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ADA591BE60; Wed, 17 Jul 2019 18:00:12 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id BF0FF1BE5B for ; Wed, 17 Jul 2019 18:00:10 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jul 2019 09:00:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,274,1559545200"; d="scan'208";a="319354367" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by orsmga004.jf.intel.com with ESMTP; 17 Jul 2019 09:00:08 -0700 Received: from irsmsx112.ger.corp.intel.com (10.108.20.5) by IRSMSX106.ger.corp.intel.com (163.33.3.31) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 17 Jul 2019 17:00:07 +0100 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.88]) by irsmsx112.ger.corp.intel.com ([169.254.1.38]) with mapi id 14.03.0439.000; Wed, 17 Jul 2019 17:00:07 +0100 From: "Trahe, Fiona" To: "Kusztal, ArkadiuszX" , "dev@dpdk.org" CC: "akhil.goyal@nxp.com" , "shallyv@marvell.com" , "Nowak, DamianX" , "Trahe, Fiona" Thread-Topic: [PATCH v4 00/11] Rework API for RSA algorithm in asymmetric crypto Thread-Index: AQHVPJ7MJ9OFriGDCEyNyMOlw23jEabO9++w Date: Wed, 17 Jul 2019 16:00:06 +0000 Message-ID: <348A99DA5F5B7549AA880327E580B435897C6798@IRSMSX101.ger.corp.intel.com> References: <20190717125111.11288-1-arkadiuszx.kusztal@intel.com> In-Reply-To: <20190717125111.11288-1-arkadiuszx.kusztal@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOTg3MDUwZjMtMWRhYy00NzVjLTg1YWItMTgyODRmODE1YjA3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiMlJabVFkamJmTG1NUVBVY29ZYWhJYUhGV21SMTFvR3YzVk4yMk5XT2NQXC81UXJMcXZvUXdod1B0TDIyQWJNV3MifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 00/11] Rework API for RSA algorithm in asymmetric crypto X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: Kusztal, ArkadiuszX > Sent: Wednesday, July 17, 2019 1:51 PM > To: dev@dpdk.org > Cc: akhil.goyal@nxp.com; Trahe, Fiona ; shallyv@ma= rvell.com; Nowak, > DamianX ; Kusztal, ArkadiuszX > Subject: [PATCH v4 00/11] Rework API for RSA algorithm in asymmetric cryp= to >=20 > Split into smaller commits, in order from least disputable ones. > Open things beside this: > 1. Creating padding struct > 2. Padding parameters (seedlen, optional label etc) > 3. Leading zeroes questions. > 4. Random number requirements. > 5. Capabilities. > 6. Verify signature field when none padding. >=20 > v4: > - change API comments from length -> array allocation > to avoid ambiguity >=20 > v3: > - split into smaller patches > - removed padding struct changes > - rebased against patches from CRT patches from Ayuj Verma >=20 > v2: > - Field for singature verification when padding none selected was added > - Removed details from RFC > - Simplified padding struct > - Added padding none test case >=20 > This patchset depends on following patches: > [1] > test/crypto: move rsa enqueue/dequeue into separate functions > (http://patchwork.dpdk.org/patch/56342/) > [2] > test/crypto: add tests for RSA key type CRT > (http://patchwork.dpdk.org/patch/56343/) >=20 > Arek Kusztal (11): > cryptodev: change RSA API comments about primes > cryptodev: add cipher field to RSA op > crypto/openssl: add cipher field to openssl RSA implementation > test: add cipher field to RSA test > cryptodev: add information about message format when signing with RSA > cryptodev: remove RSA PKCS1 BT0 padding > openssl: remove RSA PKCS1_5 BT0 padding > test: remove RSA PKCS1_5 BT0 padding from test cases > cryptodev: add RSA padding none description > test: add pkcs1_5 padding simulation > test: add RSA PKCS1_5 padding case when no padding selected >=20 > app/test/test_cryptodev_asym.c | 53 ++++++++++++++++++++------ > app/test/test_cryptodev_asym_util.h | 54 ++++++++++++++++++++++++++= + > drivers/crypto/openssl/rte_openssl_pmd.c | 12 +++--- > lib/librte_cryptodev/rte_crypto_asym.h | 64 ++++++++++++++++++++++++--= ------ > 4 files changed, 149 insertions(+), 34 deletions(-) >=20 > -- > 2.1.0 Series-acked-by: Fiona Trahe