From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id E8D9F1094 for ; Tue, 17 Jan 2017 12:23:56 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP; 17 Jan 2017 03:23:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,244,1477983600"; d="scan'208";a="31577353" Received: from gklab-246-023.igk.intel.com (HELO Sent) ([10.217.246.23]) by orsmga002.jf.intel.com with SMTP; 17 Jan 2017 03:23:54 -0800 Received: by Sent (sSMTP sendmail emulation); Tue, 17 Jan 2017 12:19:23 +0100 From: Piotr Azarewicz To: pablo.de.lara.guarch@intel.com, dev@dpdk.org Date: Tue, 17 Jan 2017 12:19:17 +0100 Message-Id: <1484651959-9527-1-git-send-email-piotrx.t.azarewicz@intel.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1484570243-218696-1-git-send-email-piotrx.t.azarewicz@intel.com> References: <1484570243-218696-1-git-send-email-piotrx.t.azarewicz@intel.com> Subject: [dpdk-dev] [PATCH v6 0/2] crypto/aesni_gcm: migration from MB library to ISA-L 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: Tue, 17 Jan 2017 11:23:57 -0000 Current Cryptodev AES-NI GCM PMD is implemented using Multi Buffer Crypto library.This patch reimplement the device using ISA-L Crypto library: https://github.com/01org/isa-l_crypto. The migration entailed the following additional support for: * GMAC algorithm. * 256-bit cipher key. * Session-less mode. * Out-of place processing * Scatter-gatter support for chained mbufs (only out-of place and destination mbuf must be contiguous) Verified current unit tests and added new unit tests to verify new functionalities. Signed-off-by: Piotr Azarewicz Acked-by: Declan Doherty v6 changes: - rebase on top of dpdk-next-crypto - split driver implementation and tests v5 changes: - rebase on top of dpdk-next-crypto - remove the perftest output from commit message - correction in aesni_gcm.rst - fix typo v4 changes: - rebase on top of dpdk-next-crypto - update the script test-build.sh v3 changes: - rebase on top of dpdk-next-crypto v2 changes: - implement native scatter-gatter support for chained mbufs (only out-of place and destination mbuf must be contiguous) - write unit test for session-less mode - write unit test for out-of place processing - add support for GMAC authentication algorithm Piotr Azarewicz (2): crypto/aesni_gcm: migration from MB library to ISA-L app/test: add GCM additional tests app/test/test_cryptodev.c | 753 +++++++++++++++++++--- app/test/test_cryptodev_gcm_test_vectors.h | 491 +++++++++++++- devtools/test-build.sh | 4 +- doc/guides/cryptodevs/aesni_gcm.rst | 24 +- doc/guides/rel_notes/release_17_02.rst | 12 + drivers/crypto/aesni_gcm/Makefile | 8 +- drivers/crypto/aesni_gcm/aesni_gcm_ops.h | 95 +-- drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 320 +++++---- drivers/crypto/aesni_gcm/aesni_gcm_pmd_ops.c | 49 +- drivers/crypto/aesni_gcm/aesni_gcm_pmd_private.h | 15 +- mk/rte.app.mk | 3 +- 11 files changed, 1361 insertions(+), 413 deletions(-) -- 1.7.9.5