From patchwork Tue Sep 5 15:12:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Dooley X-Patchwork-Id: 111 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5948842503; Tue, 5 Sep 2023 17:12:47 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 420BF40A67; Tue, 5 Sep 2023 17:12:47 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 1FF0340279 for ; Tue, 5 Sep 2023 17:12:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1693926766; x=1725462766; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=QlY87qiVzSInuCXAyR4xU5tM4rtH0IKX0lKok1tLEj4=; b=DxEZp9gKl1scHfhTUQ4BGhQtOB9M5p50t2/GOX+AEk2jBS5ektrwSSpM 1d0X5VgWvW1vPztN7CcQJWxhGOCPWg0abLuexeylZz8yEkVqR2aNwbqgB hdCt1vZeRZacCuR8XAf6ue3hTk5Uj0exmrqcvJXDoZTGxdVIRbWSbkaif mVyfQZTkfy4fN0TIQ4N15iSK8BK21OSCndJ1Q+Qtz8kgTL9vecAJLA7Gv n6exAnFzIv8yLGldIuQhNOzncxAHB6IjYjEymOsg8TPz0T5bSAANUDK2j yv8+Ps1RgGN4VVplL7Xjy6uw0y5eqFTo3myDafA+/Z6n4bUB/ItnuRCDC Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="367040520" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="367040520" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2023 08:12:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="690961538" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="690961538" Received: from silpixa00400883.ir.intel.com ([10.243.22.155]) by orsmga003.jf.intel.com with ESMTP; 05 Sep 2023 08:12:43 -0700 From: Brian Dooley To: Cc: dev@dpdk.org, gakhil@marvell.com, Brian Dooley Subject: [PATCH v4 0/2] Add Digest Encrypted to aesni_mb PMD Date: Tue, 5 Sep 2023 15:12:17 +0000 Message-Id: <20230905151219.1548547-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230825084135.3430358-1-brian.dooley@intel.com> References: <20230825084135.3430358-1-brian.dooley@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This series adds the Digest Encrypted feature to the AESNI_MB PMD. It also fixes an issue where IV data in SNOW3G and ZUC algorithms were incorrect and are required to be non-zero length. v2: Fixed CHECKPATCH warning v3: Add Digest encrypted support to docs v4: add comments and refactor Brian Dooley (2): crypto/ipsec_mb: add digest encrypted feature test/crypto: fix IV in some vectors app/test/test_cryptodev_mixed_test_vectors.h | 8 +- doc/guides/cryptodevs/features/aesni_mb.ini | 1 + drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 107 ++++++++++++++++++- 3 files changed, 109 insertions(+), 7 deletions(-)