From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 5933437A2 for ; Fri, 11 Mar 2016 00:02:34 +0100 (CET) Received: by mail-wm0-f51.google.com with SMTP id n186so7062445wmn.1 for ; Thu, 10 Mar 2016 15:02:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=nDxPLDReyWHbPD7LPerhqpg68X0Go4aSl9MGl/Rt5ac=; b=D5+zdUaqJGgwxe9mz6Lg2+Er18zuh7lFu0CJs3vJ37bvFn0dYuj7QzWFRSEytNSxQm wUp3H2xe6NFPw/PpKwacS/79VVr2ZY4bi56Ab75JGYDIq3PKpFEXcJTz+c27DHotaUXW u6VbYvYqpMpxB8lcKMo+JE/5RSgchBo29vJ352oqDl5h+ecKSMum2U1DVph72WDPKo1t If1iiKBcjUrcmpJSL0q0h/e4/p++ymR91MPU4efb3BkDOE2bIFAsgJB2w1r9nr+8rz2I +R2vZmO8jotbjQF06+57W3FIiOTsh6+eU46/nPGCGdn8fwmAGeFCsHXiQ2l9l19CNI/K g0TQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=nDxPLDReyWHbPD7LPerhqpg68X0Go4aSl9MGl/Rt5ac=; b=Si6SM9qtz19JOujRmxMODQv1B2jOJhd9lvcF2JwdgIt5tAgQK/GK+valwvsRxbyAOi NzizB7Ps+QtZ/4KGsGlkB3Da70GKTk8P8FOPm9ldJ8WLXw5CMO0Ik+VTB3CXGeAapdMM SLlk5a12Whpvc+WbETI6aXvZ/lcp/It90ocfsspQnmU/p/cPj24wqNL6dlXmneAqDLzA WKPV+xvvEYlzMZE2BLeHitUCe98TQyBdi206dIJmAgKWf9Myl2JOP2N6mNo/ZyOLOYHs FP1RfbMcfwlgtIZi8qbV5msBG3gF2zc8m49+9OyxOQjSxjBzOFeCYHqJzNmKZLEndAit u4Zw== X-Gm-Message-State: AD7BkJJgqUgBNgUK5JwSZd650osY2+Lcj+JbiX/ShAn21qfbaYoHoyDzCzixgGTCyya+psGf X-Received: by 10.28.182.136 with SMTP id g130mr811865wmf.10.1457650954165; Thu, 10 Mar 2016 15:02:34 -0800 (PST) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id i1sm5559881wjs.45.2016.03.10.15.02.33 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Mar 2016 15:02:33 -0800 (PST) From: Thomas Monjalon To: "De Lara Guarch, Pablo" Date: Fri, 11 Mar 2016 00:00:51 +0100 Message-ID: <4265553.mMJ02mO45L@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1457380086-30391-1-git-send-email-pablo.de.lara.guarch@intel.com> <1457627592-29144-1-git-send-email-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v4] pmd/snow3g: add new SNOW 3G SW PMD 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 23:02:34 -0000 > Added new SW PMD which makes use of the libsso SW library, which provides wireless algorithms SNOW 3G UEA2 and UIA2 in software. > > 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_SNOW3G_UEA2 > - RTE_CRYPTO_SYM_AUTH_SNOW3G_UIA2 > > The SNOW 3G hash and cipher algorithms, which are enabled by this crypto PMD are implemented by Intel's libsso software library. For library download and build instructions, see the documentation included (doc/guides/cryptodevs/snow3g.rst) > > The patch also contains the related unit tests function to test the PMD supported operations. > > Signed-off-by: Pablo de Lara > Acked-by: Deepak Kumar JAIN Applied with some trivial fixes.