From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4552D41DC6; Fri, 3 Mar 2023 10:38:28 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E436440EE3; Fri, 3 Mar 2023 10:38:27 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 1D5F5400D6 for ; Fri, 3 Mar 2023 10:38:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677836306; x=1709372306; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ejkMuVweGqw7vpDphxEh22dycwQUrm/A9ID7ntI6B3s=; b=jZFlDGBqXIm5jjp0NmiqjLvNfC4UrFWNLE+79gGHtcozzOAsEqJHjCML azE7QGQPP6fgeF4HgBI85JcIruxddPSs6Wx+xVLfyLI8kcLh9fg1+Dq6s M2B8fbEsFalwj6p8gGyo9AJcAfgTBTiKF92gXfbbvUfEUc5CmTE3Em/U3 kY40cCMCfylHWBIry4zkIt6gdLuKn5vwK0wGHmCFgvELYWorVMRpSpBg7 hkPwzKHBV1GNyHJg11LesuHg2AHcvKET33r6iqc6H46QtpNfgPYJoPn6+ 9QfXcsEh2OYjwCwT6mlxaRtKT1SkU3a4UN4KXs4wfXDvT8pWx5gschFtZ Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="362600833" X-IronPort-AV: E=Sophos;i="5.98,230,1673942400"; d="scan'208";a="362600833" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Mar 2023 01:38:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="739444711" X-IronPort-AV: E=Sophos;i="5.98,230,1673942400"; d="scan'208";a="739444711" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.222.80]) by fmsmga008.fm.intel.com with ESMTP; 03 Mar 2023 01:38:24 -0800 From: Ciara Power To: Cc: dev@dpdk.org, kai.ji@intel.com, pablo.de.lara.guarch@intel.com, Ciara Power Subject: [PATCH v2 0/5] test/crypto: add ZUC256 chained tests Date: Fri, 3 Mar 2023 09:38:16 +0000 Message-Id: <20230303093821.2367309-1-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230301163916.2248543-1-ciara.power@intel.com> References: <20230301163916.2248543-1-ciara.power@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 patchset adds chained testcases for each ZUC256 digest size: - cipher-auth - auth-cipher - auth-cipher-verify To add these tests, some improvements were made to the existing code, allowing for the user to easily differentiate ZUC256 and ZUC128 tests. Some fixes are also included, that were highlighted when these new tests were added. v2: changed bit lengths to byte length representation. Ciara Power (5): test/crypto: improve readability of ZUC256 tests test/crypto: fix ZUC digest length in comparison test/crypto: fix auth op parameter for ZUC256 tests test/crypto: fix capability check for ZUC cipher auth test/crypto: add chained ZUC256 testcases app/test/test_cryptodev.c | 280 +++++--- app/test/test_cryptodev_zuc_test_vectors.h | 714 +++++++++++++++++++++ 2 files changed, 913 insertions(+), 81 deletions(-) -- 2.25.1