From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shally Verma Subject: [PATCH v1 0/3] lib/cryptodev: add support of asymmetric crypto Date: Tue, 27 Mar 2018 18:24:38 +0530 Message-ID: <1522155281-16329-1-git-send-email-shally.verma@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain Cc: declan.doherty@intel.com, fiona.trahe@intel.com, pathreya@caviumnetworks.com, ssahu@caviumnetworks.com, agupta@caviumnetworks.com, dev@dpdk.org To: pablo.de.lara.guarch@intel.com Return-path: Received: from NAM03-BY2-obe.outbound.protection.outlook.com (mail-by2nam03on0070.outbound.protection.outlook.com [104.47.42.70]) by dpdk.org (Postfix) with ESMTP id D45F42B96 for ; Tue, 27 Mar 2018 14:55:02 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch series add support for asymmetric crypto API specification in DPDK librte_cryptodev library. It is based on review discussion on RFC v1 patch http://dpdk.org/patch/34308 Key changes from RFCv1 include: - removal of dedicated sym and asym qp setup, - remove asym qp count and attach/detach_session apis - re-org xforms params for deffie-hellman to allow public key and optional private key generations - move elliptic curve changes into another separate patch/patch series Todo: - add elliptic curve support - rename of existing session_configure/clear APIs to sym_session_configure/clear/init APIs This patch series is divided in to 3 patches: 1. lib/cryptodev: add support for asymmetric crypto op in cryptodev Extend librte_cryptodev for asymmetric op pool and sessions create/destroy and other associated PMD ops 2. lib/cryptodev: add asymmetric crypto capability in cryptodev Extend capability in librte_cryptodev for asymmetric capability and associated APIs 3. lib/cryptodev: add asymmetric algos in cryptodev Add new rte_crypto_asym.h defining supported asymmetric algos(xforms) and associated ops structures RFC v1 patch http://dpdk.org/patch/34308 is further a derivative of earlier reviewed RFC v2 patch series: http://dpdk.org/dev/patchwork/patch/24245/ http://dpdk.org/dev/patchwork/patch/24246/ http://dpdk.org/dev/patchwork/patch/24247/ Shally Verma (3): lib/cryptodev: add support for asymmetric crypto op lib/cryptodev: add asymmetric crypto capability in cryptodev lib/cryptodev: add asymmetric algos in cryptodev lib/librte_cryptodev/Makefile | 3 +- lib/librte_cryptodev/rte_crypto.h | 37 +- lib/librte_cryptodev/rte_crypto_asym.h | 519 +++++++++++++++++++++++++ lib/librte_cryptodev/rte_cryptodev.c | 218 ++++++++++- lib/librte_cryptodev/rte_cryptodev.h | 186 ++++++++- lib/librte_cryptodev/rte_cryptodev_pmd.h | 58 ++- lib/librte_cryptodev/rte_cryptodev_version.map | 17 + 7 files changed, 1031 insertions(+), 7 deletions(-) create mode 100644 lib/librte_cryptodev/rte_crypto_asym.h -- 2.14.3