From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 7EB111B1C2 for ; Mon, 9 Oct 2017 12:10:35 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Oct 2017 03:10:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,500,1500966000"; d="scan'208";a="144351178" Received: from irsmsx154.ger.corp.intel.com ([163.33.192.96]) by orsmga002.jf.intel.com with ESMTP; 09 Oct 2017 03:10:26 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by IRSMSX154.ger.corp.intel.com ([169.254.12.83]) with mapi id 14.03.0319.002; Mon, 9 Oct 2017 11:10:25 +0100 From: "De Lara Guarch, Pablo" To: "Doherty, Declan" , "Trahe, Fiona" , "Jain, Deepak K" , "Griffin, John" CC: "dev@dpdk.org" Thread-Topic: [PATCH v2 0/9] Add support for AES-CCM Thread-Index: AQHTMx4swbx4sF0RjE6U2ZOAFKXUgqLbZ0yA Date: Mon, 9 Oct 2017 10:10:25 +0000 Message-ID: References: <20170818080728.43248-1-pablo.de.lara.guarch@intel.com> <20170921131123.16513-1-pablo.de.lara.guarch@intel.com> In-Reply-To: <20170921131123.16513-1-pablo.de.lara.guarch@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYmZmNjMyZWUtZTUwMC00OWM2LWI1OGMtMWYyZWY5ZjUxN2Q5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImhTYVlOclJQM2plMFlqNHRYNEJDWHVCWDlVeDFyeXVOZSsxNG1rVlwvRkxnPSJ9 x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 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 v2 0/9] Add support for AES-CCM 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: , X-List-Received-Date: Mon, 09 Oct 2017 10:10:36 -0000 > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Thursday, September 21, 2017 2:11 PM > To: Doherty, Declan ; Trahe, Fiona > ; Jain, Deepak K ; > Griffin, John > Cc: dev@dpdk.org; De Lara Guarch, Pablo > > Subject: [PATCH v2 0/9] Add support for AES-CCM >=20 > AES-CCM support is added in the OpenSSL and QAT PMDs. > The PMDs and the test code have been reworked, to avoid duplications with > AES-GCM code, as both algorithms are quite similar (both are AEAD > algorithms). >=20 > Also, an optimization for AES-GCM (and AES-CCM after the last patch) has > been introduced, initializing the OpenSSL Context with the key, at sessio= n > creation, instead of for each operation. >=20 > Changes in v2: > - Clarified API for AES-CCM > - Modified OpenSSL PMD and sample apps to comply with API > - Added support for AES-CCM in QAT > - Extended test cases for 192 and 256 bit keys >=20 > Arek Kusztal (1): > crypto/qat: add AES-CCM support >=20 > Pablo de Lara (8): > cryptodev: clarify API for AES-CCM > examples/l2fwd-crypto: add AES-CCM support > app/crypto-perf: add AES-CCM support > crypto/openssl: fix AEAD parameters > crypto/openssl: init GCM key at session creation > crypto/openssl: add AES-CCM support > test/crypto: rename GCM test code > test/crypto: add AES-CCM tests >=20 > app/test-crypto-perf/cperf_ops.c | 21 +- > app/test-crypto-perf/cperf_test_latency.c | 34 +- > app/test-crypto-perf/cperf_test_throughput.c | 34 +- > app/test-crypto-perf/cperf_test_verify.c | 35 +- > doc/guides/cryptodevs/features/default.ini | 3 + > doc/guides/cryptodevs/features/openssl.ini | 3 + > doc/guides/cryptodevs/openssl.rst | 1 + > doc/guides/rel_notes/release_17_11.rst | 6 + > drivers/crypto/openssl/rte_openssl_pmd.c | 375 +++++++++++---- > drivers/crypto/openssl/rte_openssl_pmd_ops.c | 30 ++ > drivers/crypto/qat/qat_adf/icp_qat_hw.h | 20 + > drivers/crypto/qat/qat_adf/qat_algs_build_desc.c | 28 ++ > drivers/crypto/qat/qat_crypto.c | 169 ++++++- > drivers/crypto/qat/qat_crypto_capabilities.h | 30 ++ > examples/l2fwd-crypto/main.c | 44 +- > lib/librte_cryptodev/rte_crypto_sym.h | 34 +- > test/test/test_cryptodev.c | 535 +++++++++++++++= ------ > ...ectors.h =3D> test_cryptodev_aead_test_vectors.h} | 516 > ++++++++++++++++++-- > test/test/test_cryptodev_perf.c | 2 +- > 19 files changed, 1570 insertions(+), 350 deletions(-) rename > test/test/{test_cryptodev_gcm_test_vectors.h =3D> > test_cryptodev_aead_test_vectors.h} (92%) >=20 > -- > 2.9.4 Applied to dpdk-next-crypto. Thanks, Pablo