From patchwork Thu Jun 23 14:42:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Power, Ciara" X-Patchwork-Id: 113350 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 2DBC3A0093; Thu, 23 Jun 2022 16:43:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1F25940A82; Thu, 23 Jun 2022 16:43:00 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 0158240146 for ; Thu, 23 Jun 2022 16:42:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655995378; x=1687531378; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=3A+ZXPUgPPa3ijUKG7M4MeFPC6JvMGKWD4Q0+bqxxbs=; b=A9IpCzaJdtSCqXWQ+/sp+b8nBtL52EUg3L0aodNnE9XOB1rYOn3PDvKw P/vMiaM8fC8v8JaE5DzIofaLfTi/QRdlrUZ+0UaQkJ5DmH26peIVtWwBj 1PYReZVpxkpO1AY6fhA4MrUZ7SyMcsZ7opDq6TublVVZkHc0eY31Fb97+ 9LBiTD4Wcxtl7KIPj8KFtm01154cRSg4PmsuT84GNz+yehp01I0t3tMQt Drt0qzrHAPeHcwh5usqq8R6mFk757Cn6rkhbQ+fApO6zsIZhCRFVbAqS6 zTHpqVYyJ7+sPocc99iqtHjya51EGOymolLBAFdTvj/W2GH1aDZ7Kc90K A==; X-IronPort-AV: E=McAfee;i="6400,9594,10386"; a="281814712" X-IronPort-AV: E=Sophos;i="5.92,216,1650956400"; d="scan'208";a="281814712" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Jun 2022 07:42:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,216,1650956400"; d="scan'208";a="621339927" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.222.49]) by orsmga001.jf.intel.com with ESMTP; 23 Jun 2022 07:42:55 -0700 From: Ciara Power To: Cc: dev@dpdk.org, kai.ji@intel.com, roy.fan.zhang@intel.com, pablo.de.lara.guarch@intel.com, ktejasree@marvell.com, gakhil@marvell.com, Ciara Power Subject: [PATCH 0/2] fix wireless algorithm IVs Date: Thu, 23 Jun 2022 14:42:48 +0000 Message-Id: <20220623144250.1259901-1-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 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 Some of the ZUC and Snow3G test vectors did not follow the specification for the cipher and authentication IVs. These are now updated to follow the spec documents: ZUC 128 spec: https://www.gsma.com/security/wp-content/uploads/2019/05/EEA3_EIA3_specification_v1_8.pdf Snow3G spec: https://www.gsma.com/aboutus/wp-content/uploads/2014/12/uea2uia2d1v21.pdf Ciara Power (2): test/crypto: fix zuc test vector IV format test/crypto: fix snow3g test vector IV format app/test/test_cryptodev_snow3g_test_vectors.h | 142 +++++++++--------- app/test/test_cryptodev_zuc_test_vectors.h | 54 +++---- 2 files changed, 98 insertions(+), 98 deletions(-)