From patchwork Tue Dec 28 09:24:19 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 105463 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 83300A034F; Tue, 28 Dec 2021 10:25:08 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0D9CE40687; Tue, 28 Dec 2021 10:25:08 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 5512F4003C for ; Tue, 28 Dec 2021 10:25:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1640683506; x=1672219506; h=from:to:cc:subject:date:message-id; bh=Cu4vdiUHwNIWo4yEM3TbFZyo4+eLHX6a40N17UCkueo=; b=DHrbpF1vGktn81YafkGhnsURakzT7dLUVJSSr9ebr85iZwvkuCkWrZjl bp1DpzVwYBhw88slYKdZJF2mlaWba63hinwRPKKuL1oegbKbfw2nhg19K kOBI2b92HACrDOWQ4VpSsQNADKqYYaGUAdbddBrD9Fwcn2BYCbQpB8Zhk +vcYq947sMesBYKn9c2vbJYqrvlNe2R44vkUAEVK3lNOlHTUhBV7bz4uC Y9H8VPqdHjnl3ALzoHgmy2sh+vKirAvcB7ETES9K5GD5iQJl77BJhouCQ 6jurLU9u5EEID5FLinrYjk1rJHoU/fELFTMgBsUHm/cX+QG95Uy+CzwOf w==; X-IronPort-AV: E=McAfee;i="6200,9189,10210"; a="228645402" X-IronPort-AV: E=Sophos;i="5.88,242,1635231600"; d="scan'208";a="228645402" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2021 01:24:28 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,242,1635231600"; d="scan'208";a="686542932" Received: from silpixa00400308.ir.intel.com ([10.237.214.95]) by orsmga005.jf.intel.com with ESMTP; 28 Dec 2021 01:24:26 -0800 From: Arek Kusztal To: dev@dpdk.org Cc: gakhil@marvell.com, roy.fan.zhang@intel.com, Arek Kusztal Subject: [PATCH 0/2] crypto/qat: add asymmetric crypto algorithms Date: Tue, 28 Dec 2021 09:24:19 +0000 Message-Id: <20211228092421.22602-1-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.17.1 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 following asymmetric crypto algorithms to Intel QuickAssist Technology driver: - DSA - DH - ECDSA - ECPM Arek Kusztal (2): crypto/qat: refactor asymmetric crypto functions crypto/qat: add named elliptic curves .../qat/qat_adf/qat_pke_functionality_arrays.h | 254 ++++- drivers/crypto/qat/dev/qat_asym_pmd_gen1.c | 1 - drivers/crypto/qat/qat_asym.c | 1142 +++++++++----------- drivers/crypto/qat/qat_asym.h | 2 +- drivers/crypto/qat/qat_ec.h | 203 ++++ 5 files changed, 916 insertions(+), 686 deletions(-) create mode 100644 drivers/crypto/qat/qat_ec.h