From patchwork Tue Sep 5 16:15:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Dooley X-Patchwork-Id: 112 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 B364A424F4; Tue, 5 Sep 2023 18:20:02 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9AE8341143; Tue, 5 Sep 2023 18:19:51 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 8307E427DF for ; Tue, 5 Sep 2023 18:19:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1693930789; x=1725466789; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=PiqEuIrm9ID7/BL57UUpS2XWclj/lxcu14a0LZtVS1E=; b=b1B8qja67/aaYZRnLDXfAPviIlniZ69i18iUEqUBqbf8RiEOgEDbwGqN NkRggVkxecnMDNjaE67Id7MmUfhurWXLt2YLsIwYea9zLfQ1n/MK182z4 AeoWBV6SAxjrEFyW/tJr+sRsr2CJLAhDwG5U/MlrKxGiNEvVKCltj6W4T l8b7HvNIzaXdxhU7G6RThVQUXvgTkEynbEgGn/M5Y3Z5prNGaOLpAF+qb 1+iE30smTiY7aNkHkc1UK1TqA4DXw/VQymXpFv8woUcdb2Tf2e3lLLwS4 /BN7NYopk5g8stF/+7tWJac1xJBg6gWKtZObtNgoC0h9NpGuXXG0W8AAm Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="375728523" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="375728523" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2023 09:15:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10824"; a="884359880" X-IronPort-AV: E=Sophos;i="6.02,229,1688454000"; d="scan'208";a="884359880" Received: from silpixa00400883.ir.intel.com ([10.243.22.155]) by fmsmga001.fm.intel.com with ESMTP; 05 Sep 2023 09:15:03 -0700 From: Brian Dooley To: Cc: dev@dpdk.org, gakhil@marvell.com, Brian Dooley Subject: [PATCH v5 0/2] Add Digest Encrypted to aesni_mb PMD Date: Tue, 5 Sep 2023 16:15:05 +0000 Message-Id: <20230905161507.1561889-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230905151219.1548547-1-brian.dooley@intel.com> References: <20230905151219.1548547-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 v5: Fix checkpatch warnings 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(-)