From patchwork Wed Apr 27 07:43:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 110301 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 4F623A050F; Wed, 27 Apr 2022 09:44:11 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 005D840E78; Wed, 27 Apr 2022 09:44:11 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id C2E6440691 for ; Wed, 27 Apr 2022 09:44:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651045449; x=1682581449; h=from:to:cc:subject:date:message-id; bh=VOsBpP52wQecXK36qwj+g0g3ya3t5GUXkxuMogJsIok=; b=S0LFZJX+qBLTmBYlCGsMCu9xJLkY/p6d6fHdaRhzl0qtQXVr0pJoDPek +Cf973EpT5zF9t2ddMr+mi/lC1ntUg9IzQHZQApMfhfFTPGYXny9jcvAu DSDN8MNEOCTpmL+h1bSbzsCJlhj95mHuAgXwrfeVCv38qyhn97KrbbTBk it2ZLGXo/0I8JEcjFQx9WkNEu6vaFEQKvsXudlAQv0TkCNdzPrzJplRrD Snhp+5W/N3Bp7N7TE/RPzlD7k9YgkLwNQC1YYLy2/rUJeRw39xF2XUPLc ygVm5PnGve9eNRcxMF1HnZk2aVwOHBnk7k1X/2oFpNd0IbRlVZXttHgG7 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10329"; a="246414392" X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="246414392" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 00:44:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="513562085" Received: from silpixa00400308.ir.intel.com ([10.237.214.95]) by orsmga003.jf.intel.com with ESMTP; 27 Apr 2022 00:44:07 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: gakhil@marvell.com, roy.fan.zhang@intel.com, Arek Kusztal Subject: [PATCH v4 0/3] cryptodev: move dh type from xform to dh op Date: Wed, 27 Apr 2022 08:43:57 +0100 Message-Id: <20220427074400.2091-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 Operation type (PUBLIC_KEY_GENERATION, SHARED_SECRET) should be free to choose for any operation. One xform/session should be enough to perform both DH operations, if op_type would be xform member, session would have to be to be created twice for the same group. Similar problem would be observed in sessionless case. Additionally, it will help extend DH to support Elliptic Curves. v4: - changed op_type coment - added openssl fix Arek Kusztal (3): cryptodev: move dh type from xform to dh op crypto/openssl: move dh type from xform to dh op test/crypto: move dh type from xform to dh op app/test/test_cryptodev_asym.c | 11 +++--- drivers/crypto/openssl/rte_openssl_pmd.c | 54 ++-------------------------- drivers/crypto/openssl/rte_openssl_pmd_ops.c | 26 -------------- lib/cryptodev/rte_crypto_asym.h | 14 ++++---- 4 files changed, 16 insertions(+), 89 deletions(-)