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 60F386CB5 for ; Wed, 5 Oct 2016 02:43:09 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP; 04 Oct 2016 17:43:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,446,1473145200"; d="scan'208";a="16246558" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by fmsmga006.fm.intel.com with ESMTP; 04 Oct 2016 17:43:06 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.164]) by irsmsx110.ger.corp.intel.com ([163.33.3.25]) with mapi id 14.03.0248.002; Wed, 5 Oct 2016 01:43:04 +0100 From: "De Lara Guarch, Pablo" To: "De Lara Guarch, Pablo" , "Gonzalez Monroy, Sergio" , "dev@dpdk.org" Thread-Topic: [PATCH v3 0/9] IPsec Enhancements Thread-Index: AQHSGmheJ2RS6mkiQU23xYDrbAy2rqCRLffAgAfc3VA= Date: Wed, 5 Oct 2016 00:43:03 +0000 Message-ID: References: <1474616734-118291-1-git-send-email-sergio.gonzalez.monroy@intel.com> <1475163857-142366-1-git-send-email-sergio.gonzalez.monroy@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMTExMTdjMTYtZjFiYi00OGQxLTk2ZTItNWQxZmFmZmIzY2Y2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImVMM29EVUFteEtvTUcxMHFIOFRpWmlocHVQdFZoY2lBSERlVnRCSzN0NWs9In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/9] IPsec Enhancements X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Oct 2016 00:43:09 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of De Lara Guarch, > Pablo > Sent: Thursday, September 29, 2016 5:28 PM > To: Gonzalez Monroy, Sergio; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3 0/9] IPsec Enhancements >=20 >=20 >=20 > > -----Original Message----- > > From: Gonzalez Monroy, Sergio > > Sent: Thursday, September 29, 2016 8:44 AM > > To: dev@dpdk.org > > Cc: De Lara Guarch, Pablo > > Subject: [PATCH v3 0/9] IPsec Enhancements > > > > This patch set mainly adds support for AES-GCM and AES-CTR. > > > > It also updates the IV generation method for AES-CBC mode using > > the forward function instead of randomly generating the IV. > > > > v3: > > - update sample app guide > > - remove unused function > > - improve commit messages > > > > v2: > > - Update releas notes. > > - Initialize salt values, GCM/CTR key length now is 20B, > > 16B key and 4 LSB salt. > > - Do not check SP/ACL if we have no rules. > > - Add macro for cryptodev queue size > > > > Dependencies: > > examples/ipsec-secgw: add configuration file support > > http://dpdk.org/dev/patchwork/patch/16004/ > > > > examples/ipsec-secgw: add sample configuration files > > http://dpdk.org/dev/patchwork/patch/16003/ > > > > Sergio Gonzalez Monroy (9): > > examples/ipsec-secgw: change CBC IV generation > > examples/ipsec-secgw: reset crypto operation status > > examples/ipsec-secgw: add AES-GCM support > > examples/ipsec-secgw: enable AES-CTR mode > > examples/ipsec-secgw: check sp only when setup > > examples/ipsec-secgw: add cryptodev queue size macro > > examples/ipsec-secgw: initialize sa salt > > examples/ipsec-secgw: update release notes > > examples/ipsec-secgw: update ipsec-secgw guide > > > > doc/guides/rel_notes/release_16_11.rst | 9 ++ > > doc/guides/sample_app_ug/ipsec_secgw.rst | 15 ++-- > > examples/ipsec-secgw/esp.c | 144 ++++++++++++++++++++++-= -------- > > examples/ipsec-secgw/ipsec-secgw.c | 7 +- > > examples/ipsec-secgw/ipsec.c | 1 + > > examples/ipsec-secgw/ipsec.h | 35 +++++++- > > examples/ipsec-secgw/sa.c | 54 ++++++++++-- > > 7 files changed, 207 insertions(+), 58 deletions(-) > > > > -- > > 2.5.5 >=20 > Series-acked-by: Pablo de Lara Applied to dpdk-next-crypto. Thanks, Pablo