From patchwork Fri Feb 11 16:02:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 107375 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 5F0C7A0032; Fri, 11 Feb 2022 18:09:16 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2EE3E410E5; Fri, 11 Feb 2022 18:09:16 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 3FE7440042 for ; Fri, 11 Feb 2022 18:09:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644599354; x=1676135354; h=from:to:cc:subject:date:message-id; bh=7DpeIEb3fBEkbqw12sUpb4BFfoIDk1OEljMnvrHJqHU=; b=KyeVEth1azzsghztWpHLbERER8OaO8ZoIeqBofdv6iLzfw5iLgn+0p1X xbmcGa70/axD/QClxQ7xPJ3SqhTqCiYMv7T1GQQXx0FDG8IJ96vQWQDDT yVmzf8AIFZj1bqaC5xIMJhEfELFcmb4MJt1+z6dx7ihtN8rgRfwQEyVPp DEonJOOp8m1JYZbHSy+vVRYVkSUuqGTBAmJAWJS5w/pFdVyuQUGxM3TIK ihVK6wtXJ5O928LQ6iadLiuZYdwSyKSLLQFOvzyhzIDuuO3YCDxJqjpIx 9kBdcQ0UadcbfaBVddFXTYd5ec/2MNGtvCO4SpmGoVeTM7PL8JZbDCrGy Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10255"; a="247360843" X-IronPort-AV: E=Sophos;i="5.88,361,1635231600"; d="scan'208";a="247360843" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Feb 2022 09:07:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,361,1635231600"; d="scan'208";a="488241603" Received: from silpixa00399302.ir.intel.com ([10.237.214.136]) by orsmga006.jf.intel.com with ESMTP; 11 Feb 2022 09:07:48 -0800 From: Arek Kusztal To: dev@dpdk.org Cc: gakhil@marvell.com, roy.fan.zhang@intel.com, Arek Kusztal Subject: [PATCH v3 0/4] Clarify asymmetric random, add 'k' and crypto uint Date: Fri, 11 Feb 2022 16:02:34 +0000 Message-Id: <20220211160238.90065-1-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.13.6 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 introduces following changes: 1) DSA 'k' was added that devices without random support can work. 2) Clarified usage of random numbers in asym, as per discussion from December. 3) Added typedef for crypto_uint to remove some repeating comments making code more readable. Additionally, some rearrangement was made to improve readability. v2: - added patches justification to each commit v3: - add abidiff ignore hint for rte_crypto_asym_op Arek Kusztal (4): crypto: add dsa random number k crypto: clarify usage of random numbers in asym crypto: use rte macro instead of direct attribute crypto: reorganize endianness comments, add crypto uint devtools/libabigail.abignore | 5 + lib/cryptodev/rte_crypto_asym.h | 363 ++++++++++++++++------------------------ 2 files changed, 146 insertions(+), 222 deletions(-) Acked-by: Akhil Goyal