From patchwork Thu Sep 7 16:12:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Dooley X-Patchwork-Id: 119 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 D587342538; Thu, 7 Sep 2023 18:13:23 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C9970402B0; Thu, 7 Sep 2023 18:13:23 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 6C525400EF for ; Thu, 7 Sep 2023 18:13:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694103202; x=1725639202; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=n4x7SoznJHsBSCbzNJQCjomDi1qKvb3rP3srVRRfnEY=; b=PCCKQx1ll4XlXMSCNPTTNCzXHrht5v+9MiT4k6Tg6S/Ay0gIkbIJJhEs 75MGRvtA8WDlTsTzcxJhgZLVX01vPf56nlbQvrBR7AlU5/uGkNJywRpOp Sl0R8+CkgJ4apIftrG69ybFpSMnZQTiHlPEGeupycI8+wcremtlzXMEIC GE995z2kaERUnZEI80fY0wDkNshmEtglLYP931+L5u8EyPZIhS2CzEn3v D8FLOgp9FE9H6p7/yy9oqNHIB9TmWj+r+s1m2b5fN5Ki6bUMJ7VZ+1grZ JZiTnmAME4AUBl9JnIWynihy9EBuhuCW3z7LJcZTaoo0gmp8wiWKbkghO w==; X-IronPort-AV: E=McAfee;i="6600,9927,10826"; a="408395790" X-IronPort-AV: E=Sophos;i="6.02,235,1688454000"; d="scan'208";a="408395790" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Sep 2023 09:13:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10826"; a="771337669" X-IronPort-AV: E=Sophos;i="6.02,235,1688454000"; d="scan'208";a="771337669" Received: from silpixa00400883.ir.intel.com ([10.243.22.155]) by orsmga008.jf.intel.com with ESMTP; 07 Sep 2023 09:13:01 -0700 From: Brian Dooley To: Cc: dev@dpdk.org, gakhil@marvell.com, Brian Dooley Subject: [PATCH v7 0/3] Add Digest Encrypted to aesni_mb PMD Date: Thu, 7 Sep 2023 16:12:55 +0000 Message-Id: <20230907161258.2288031-1-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230907102614.2269913-2-brian.dooley@intel.com> References: <20230907102614.2269913-2-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 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(-)