From patchwork Thu Sep 14 15:22:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Dooley X-Patchwork-Id: 137 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 728AF42598; Thu, 14 Sep 2023 17:22:40 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB0F440293; Thu, 14 Sep 2023 17:22:39 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 95AD740289 for ; Thu, 14 Sep 2023 17:22:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694704958; x=1726240958; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6cAj7knbf05LQWaRk7c0NHMWP3pkKMjQf+dICViYlog=; b=Do4Xqw6L49iYaRkpVwLUiHYVVoT4ayxjxCn4MhMqcpd3pdAjt1dUQVXH AWhaf6Qhsnx1R4FTdThOaz0OFpFxCAGZsB+ZOqVsA8hXfIJAlMQo7WN8B AQJ8PPZuSna95hAreNAChthrb/4JKMBY4I0dtG2mvTd+U0rJ0jh9fnq6P +D3JM9kkb6j0ySGGneWGfaQT0/ozXUfTNuaqCi0MoouIQBo6qjED0lY6Z yVDYQlWDe0EOtgD+2AYclgz5Pe5QCxHvCZppijdrRlWCR59uRsI8bFcD3 HomqWOtQqK9OfcfgckvI0xKsdHllubOdZd8h7Pl8SnWSPqtTXqwF1NXUj g==; X-IronPort-AV: E=McAfee;i="6600,9927,10833"; a="465354066" X-IronPort-AV: E=Sophos;i="6.02,146,1688454000"; d="scan'208";a="465354066" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Sep 2023 08:22:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10833"; a="859754353" X-IronPort-AV: E=Sophos;i="6.02,146,1688454000"; d="scan'208";a="859754353" Received: from silpixa00400883.ir.intel.com ([10.243.22.155]) by fmsmga002.fm.intel.com with ESMTP; 14 Sep 2023 08:22:32 -0700 From: Brian Dooley To: Cc: dev@dpdk.org, gakhil@marvell.com, Brian Dooley Subject: [PATCH v8 0/3] Add Digest Encrypted to aesni_mb PMD Date: Thu, 14 Sep 2023 15:22:26 +0000 Message-Id: <20230914152229.2650901-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230907161258.2288031-1-brian.dooley@intel.com> References: <20230907161258.2288031-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 v6: Add skipping tests for synchronous crypto v7: Separate synchronous fix into separate commit v8: Reword commit and add stable 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 + drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 109 ++++++++++++++++++- 4 files changed, 117 insertions(+), 7 deletions(-)