From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 95EB12931 for ; Thu, 10 Mar 2016 17:49:05 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 10 Mar 2016 08:49:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,316,1455004800"; d="scan'208";a="761744997" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by orsmga003.jf.intel.com with ESMTP; 10 Mar 2016 08:49:03 -0800 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.137]) by IRSMSX103.ger.corp.intel.com ([169.254.3.239]) with mapi id 14.03.0248.002; Thu, 10 Mar 2016 16:49:02 +0000 From: "Jain, Deepak K" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2] null_crypto_pmd: PMD to support null crypto operations Thread-Index: AQHReuwrpW8krZqRykaPpYYUzanHhp9S4utw Date: Thu, 10 Mar 2016 16:49:01 +0000 Deferred-Delivery: Thu, 10 Mar 2016 16:48:48 +0000 Message-ID: References: <1454273336-12102-1-git-send-email-declan.doherty@intel.com> <1457628391-29996-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1457628391-29996-1-git-send-email-pablo.de.lara.guarch@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYmU1YTFlNzktOTEyZS00OWY0LWJmOGUtZjc3NWQwYzRmZjJkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik96dGQ5amtxSmRWcnNtNTl0anJVS3pDZ2l0M2VSMHZjYWJpeXhHTHJPaG89In0= 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] null_crypto_pmd: PMD to support null crypto operations 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: Thu, 10 Mar 2016 16:49:06 -0000 -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara Sent: Thursday, March 10, 2016 4:47 PM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH v2] null_crypto_pmd: PMD to support null crypto = operations From: Declan Doherty This patch provides the implementation of a NULL crypto PMD, which supports= NULL cipher and NULL authentication operations, which can be chained toget= her as follows: - Authentication Only - Cipher Only - Authentication then Cipher - Cipher then Authentication As this is a NULL operation device the crypto operations which are submitte= d for processing are not actually modified and are stored in a queue pairs = processed packets ring ready for collection when rte_cryptodev_burst_dequeu= e() is called. The patch also contains the related unit tests function to test the PMDs su= pported operations. Signed-off-by: Declan Doherty --- This patch depends on "AES GCM, AES CMAC fixes and addition of GCM tests fo= r QAT" patchset (http://dpdk.org/ml/archives/dev/2016-March/034974.html) Changes in v2: - Rebased to include Cryptodev API changes -- 2.5.0 Acked-by: Deepak Kumar JAIN