From patchwork Tue Sep 19 10:42:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Dooley X-Patchwork-Id: 152 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 BA22142601; Tue, 19 Sep 2023 12:42:23 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 64037402DA; Tue, 19 Sep 2023 12:42:23 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 2C8884027F for ; Tue, 19 Sep 2023 12:42:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695120142; x=1726656142; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=knNHHTOZF+4g/miPfeNOYlkahZBaBRZQ5WkgJqwWpVI=; b=asvSvbFxVRXqT1kwPNWUnQkOBpR24D/4EazGXQDFFP3r2S/G9Yq9riyz pmQoKR4uW8TpHmFqJYu2wwdfpooOYeztcxAfxdi7zrV5KBQlyN9+I5tS2 hZ79B3G0hT1yy/UOAteqifJeCWOgvA9fKNO9ySdqwlUBUSpjlRVMnLEZD lvCfm6yoAOhOycruDC7NLoRVYZNBB80gBjwi4F4N4kb+okEHHHVTQzF7+ ox3PHCFLsWt3LIkbT4yoN8DWgI49kbkEqpWs5LpGYzcQ3t4rcviztv25i ZGUYwgZVLxuf4jLsZinX092qtJC6YtA14V7Sq6gwIuigmYg1gJBEUiQlp A==; X-IronPort-AV: E=McAfee;i="6600,9927,10837"; a="443992567" X-IronPort-AV: E=Sophos;i="6.02,159,1688454000"; d="scan'208";a="443992567" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Sep 2023 03:42:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10837"; a="775502136" X-IronPort-AV: E=Sophos;i="6.02,159,1688454000"; d="scan'208";a="775502136" Received: from silpixa00400883.ir.intel.com ([10.243.22.155]) by orsmga008.jf.intel.com with ESMTP; 19 Sep 2023 03:42:19 -0700 From: Brian Dooley To: Cc: dev@dpdk.org, gakhil@marvell.com, Brian Dooley Subject: [PATCH v9 0/3] Add Digest Encrypted to aesni_mb PMD Date: Tue, 19 Sep 2023 10:42:14 +0000 Message-Id: <20230919104217.3104962-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230421101310.420593-1-brian.dooley@intel.com> References: <20230421101310.420593-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. v9: Added release notes v8: reword commit and add stable v7: Separate synchronous fix into separate commit v6: Add skipping tests for synchronous crypto v5: Fix checkpatch warnings v4: Add comments and small refactor v3: Add Digest encrypted support to docs v2: Fixed CHECKPATCH warning Brian Dooley (3): crypto/ipsec_mb: add digest encrypted feature test/crypto: fix IV in some vectors test/crypto: fix failing synchronous tests app/test/test_cryptodev.c | 6 + app/test/test_cryptodev_mixed_test_vectors.h | 8 +- doc/guides/cryptodevs/features/aesni_mb.ini | 1 + doc/guides/rel_notes/release_23_11.rst | 4 + drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 109 ++++++++++++++++++- 5 files changed, 121 insertions(+), 7 deletions(-)