From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 453C012A8 for ; Thu, 29 Sep 2016 11:57:32 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP; 29 Sep 2016 02:57:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,414,1470726000"; d="scan'208";a="1058193949" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by orsmga002.jf.intel.com with ESMTP; 29 Sep 2016 02:57:31 -0700 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.95]) by IRSMSX152.ger.corp.intel.com ([169.254.6.13]) with mapi id 14.03.0248.002; Thu, 29 Sep 2016 10:57:29 +0100 From: "Jain, Deepak K" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" CC: "Doherty, Declan" , "De Lara Guarch, Pablo" Thread-Topic: [dpdk-dev] [PATCH v2 1/4] crypto/zuc: add driver for ZUC library Thread-Index: AQHSGf13HwiDouijbkyJ1vtcjbVomaCQOy+A Date: Thu, 29 Sep 2016 09:57:20 +0000 Deferred-Delivery: Thu, 29 Sep 2016 09:57:14 +0000 Message-ID: References: <1472180955-42960-1-git-send-email-pablo.de.lara.guarch@intel.com> <1475117990-66664-1-git-send-email-pablo.de.lara.guarch@intel.com> <1475117990-66664-2-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1475117990-66664-2-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: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYWYwYWQwYTYtMDE0NC00MDYwLWJlNGQtZTI5ZDcyOTlhNzJkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImNXeml3RHZDempaa0JMbFN0ek1RZ1NxSXRCVGQrdXR6KzJtY1BVbkRyRlE9In0= x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 1/4] crypto/zuc: add driver for ZUC library 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, 29 Sep 2016 09:57:32 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara > Sent: Thursday, September 29, 2016 4:00 AM > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > > Subject: [dpdk-dev] [PATCH v2 1/4] crypto/zuc: add driver for ZUC library >=20 > Added new SW PMD which makes use of the libsso SW library, which > provides wireless algorithms ZUC EEA3 and EIA3 in software. >=20 > This PMD supports cipher-only, hash-only and chained operations ("cipher > then hash" and "hash then cipher") of the following > algorithms: > - RTE_CRYPTO_SYM_CIPHER_ZUC_EEA3 > - RTE_CRYPTO_SYM_AUTH_ZUC_EIA3 >=20 > The ZUC hash and cipher algorithms, which are enabled by this crypto PMD > are implemented by Intel's libsso software library. >=20 > Signed-off-by: Pablo de Lara > --- > MAINTAINERS | 5 + > config/common_base | 6 + > config/defconfig_i686-native-linuxapp-gcc | 5 + > config/defconfig_i686-native-linuxapp-icc | 5 + > doc/guides/cryptodevs/index.rst | 1 + > doc/guides/cryptodevs/zuc.rst | 108 ++++++ > drivers/crypto/Makefile | 1 + > drivers/crypto/zuc/Makefile | 69 ++++ > drivers/crypto/zuc/rte_pmd_zuc_version.map | 3 + > drivers/crypto/zuc/rte_zuc_pmd.c | 551 > +++++++++++++++++++++++++++++ > drivers/crypto/zuc/rte_zuc_pmd_ops.c | 342 ++++++++++++++++++ > drivers/crypto/zuc/rte_zuc_pmd_private.h | 108 ++++++ > lib/librte_cryptodev/rte_crypto_sym.h | 20 +- > lib/librte_cryptodev/rte_cryptodev.h | 3 + > mk/rte.app.mk | 2 + > scripts/test-build.sh | 4 + > -- > 2.7.4 Acked-by: Deepak Kumar Jain >deepak.k.jain@intel.com>