From patchwork Wed Sep 30 17:32:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 79371 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5E645A04B5; Wed, 30 Sep 2020 19:34:43 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E28601D564; Wed, 30 Sep 2020 19:34:28 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 676711D543 for ; Wed, 30 Sep 2020 19:34:24 +0200 (CEST) IronPort-SDR: rXFaQSY5EDKKQnRFFG8fCd8CcDXE4w88vgX1qAW3LTuzmLS3aHnRybgnEKjXleyaUbmeZbyYC6 PhyikSMyTfHw== X-IronPort-AV: E=McAfee;i="6000,8403,9760"; a="159886521" X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="159886521" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2020 10:34:23 -0700 IronPort-SDR: 2XTdeyIqh6RvgfSMASvfcgQBDUCFosByHUBRY3to82uw8cpW+G/YkAvxoWCVaJ1z9fcz6DRToZ 6nCRpeuMwT8w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="325109790" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.124]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2020 10:34:21 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, ruifeng.wang@arm.com, michaelsh@marvell.com, Arek Kusztal Date: Wed, 30 Sep 2020 19:32:22 +0200 Message-Id: <20200930173226.770-2-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> References: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 1/5] app/test: remove list end references from asym crypto X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 removes RTE_CRYPTO_ASYM_OP_LIST_END reference from asymmetric crypto tests. Signed-off-by: Arek Kusztal --- app/test/test_cryptodev_asym.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c index dc62ed7bf..63a6bba4f 100644 --- a/app/test/test_cryptodev_asym.c +++ b/app/test/test_cryptodev_asym.c @@ -542,7 +542,8 @@ test_one_case(const void *test_case, int sessionless) printf(" %u) TestCase %s %s\n", test_index++, tc.modex.description, test_msg); } else { - for (i = 0; i < RTE_CRYPTO_ASYM_OP_LIST_END; i++) { + for (i = RTE_CRYPTO_ASYM_OP_ENCRYPT; + i <= RTE_CRYPTO_ASYM_OP_SHARED_SECRET_COMPUTE; i++) { if (tc.modex.xform_type == RTE_CRYPTO_ASYM_XFORM_RSA) { if (tc.rsa_data.op_type_flags & (1 << i)) { if (tc.rsa_data.key_exp) { @@ -1028,7 +1029,8 @@ static inline void print_asym_capa( rte_crypto_asym_xform_strings[capa->xform_type]); printf("operation supported -"); - for (i = 0; i < RTE_CRYPTO_ASYM_OP_LIST_END; i++) { + for (i = RTE_CRYPTO_ASYM_OP_ENCRYPT; + i <= RTE_CRYPTO_ASYM_OP_SHARED_SECRET_COMPUTE; i++) { /* check supported operations */ if (rte_cryptodev_asym_xform_capability_check_optype(capa, i)) printf(" %s", From patchwork Wed Sep 30 17:32:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 79372 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 41898A04B5; Wed, 30 Sep 2020 19:35:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 79DD41D576; Wed, 30 Sep 2020 19:34:31 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 0E5F21D561 for ; Wed, 30 Sep 2020 19:34:26 +0200 (CEST) IronPort-SDR: UZSyyBvXhDdf7/cStEE//hZRrf/1iV1fiRuaeALn6HjmQvJA1TYfm0LPwRLX5E0j9keMca/Tyd oAi30MUzbRew== X-IronPort-AV: E=McAfee;i="6000,8403,9760"; a="159886524" X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="159886524" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2020 10:34:26 -0700 IronPort-SDR: BzcjV8FQudgVIJjp615gyKdacC6drCDmgJTaqBufkRtyxGhx2kMN2YCb/wyNhexkSufXENdVKQ MUtL+Vu4NFQQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="325109794" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.124]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2020 10:34:24 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, ruifeng.wang@arm.com, michaelsh@marvell.com, Arek Kusztal Date: Wed, 30 Sep 2020 19:32:23 +0200 Message-Id: <20200930173226.770-3-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> References: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 2/5] crypto/qat: remove asym list end references X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 removes LIST_END enumerators references from Intel QuickAssist Technology asymmetric crypto PMD. Signed-off-by: Arek Kusztal --- drivers/crypto/qat/qat_asym.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drivers/crypto/qat/qat_asym.c b/drivers/crypto/qat/qat_asym.c index 85973812a..9157151d9 100644 --- a/drivers/crypto/qat/qat_asym.c +++ b/drivers/crypto/qat/qat_asym.c @@ -742,11 +742,6 @@ qat_asym_session_configure(struct rte_cryptodev *dev, err = -EINVAL; goto error; } - } else if (xform->xform_type >= RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END - || xform->xform_type <= RTE_CRYPTO_ASYM_XFORM_NONE) { - QAT_LOG(ERR, "Invalid asymmetric crypto xform"); - err = -EINVAL; - goto error; } else { QAT_LOG(ERR, "Asymmetric crypto xform not implemented"); err = -EINVAL; From patchwork Wed Sep 30 17:32:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 79373 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CD0CAA04B5; Wed, 30 Sep 2020 19:35:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EE9671D584; Wed, 30 Sep 2020 19:34:39 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 6A9C01D582 for ; Wed, 30 Sep 2020 19:34:37 +0200 (CEST) IronPort-SDR: 8jGD3LqvEWoZ4cQyA9CuKZBGV9MidW/VRQKuMXNwdFTN03Qpl0GEhGGJ9ZpYbWeKOEVwiZ37ie qQBFTI7QEAow== X-IronPort-AV: E=McAfee;i="6000,8403,9760"; a="159839117" X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="159839117" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2020 10:34:36 -0700 IronPort-SDR: hNHhFG0s+nfsOom8BYXo6V/HPOZkhxDiJporrSBmekuqGNHROFl+Gi10Jeb7hFgHAhRh2OCxhk r8Sl9stG5v/w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="325109835" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.124]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2020 10:34:34 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, ruifeng.wang@arm.com, michaelsh@marvell.com, Arek Kusztal Date: Wed, 30 Sep 2020 19:32:24 +0200 Message-Id: <20200930173226.770-4-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> References: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 3/5] cryptodev: remove crypto list end enumerators X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 removes enumerators RTE_CRYPTO_CIPHER_LIST_END, RTE_CRYPTO_AUTH_LIST_END, RTE_CRYPTO_AEAD_LIST_END to prevent some problems that may arise when adding new crypto algorithms. Signed-off-by: Arek Kusztal --- lib/librte_cryptodev/rte_crypto_sym.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/lib/librte_cryptodev/rte_crypto_sym.h b/lib/librte_cryptodev/rte_crypto_sym.h index f29c98051..7a2556a9e 100644 --- a/lib/librte_cryptodev/rte_crypto_sym.h +++ b/lib/librte_cryptodev/rte_crypto_sym.h @@ -132,15 +132,12 @@ enum rte_crypto_cipher_algorithm { * for m_src and m_dst in the rte_crypto_sym_op must be NULL. */ - RTE_CRYPTO_CIPHER_DES_DOCSISBPI, + RTE_CRYPTO_CIPHER_DES_DOCSISBPI /**< DES algorithm using modes required by * DOCSIS Baseline Privacy Plus Spec. * Chained mbufs are not supported in this mode, i.e. rte_mbuf.next * for m_src and m_dst in the rte_crypto_sym_op must be NULL. */ - - RTE_CRYPTO_CIPHER_LIST_END - }; /** Cipher algorithm name strings */ @@ -312,10 +309,8 @@ enum rte_crypto_auth_algorithm { /**< HMAC using 384 bit SHA3 algorithm. */ RTE_CRYPTO_AUTH_SHA3_512, /**< 512 bit SHA3 algorithm. */ - RTE_CRYPTO_AUTH_SHA3_512_HMAC, + RTE_CRYPTO_AUTH_SHA3_512_HMAC /**< HMAC using 512 bit SHA3 algorithm. */ - - RTE_CRYPTO_AUTH_LIST_END }; /** Authentication algorithm name strings */ @@ -412,9 +407,8 @@ enum rte_crypto_aead_algorithm { /**< AES algorithm in CCM mode. */ RTE_CRYPTO_AEAD_AES_GCM, /**< AES algorithm in GCM mode. */ - RTE_CRYPTO_AEAD_CHACHA20_POLY1305, + RTE_CRYPTO_AEAD_CHACHA20_POLY1305 /**< Chacha20 cipher with poly1305 authenticator */ - RTE_CRYPTO_AEAD_LIST_END }; /** AEAD algorithm name strings */ From patchwork Wed Sep 30 17:32:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 79374 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CEC5DA04B5; Wed, 30 Sep 2020 19:35:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 902F71D561; Wed, 30 Sep 2020 19:34:42 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 0270B1D585 for ; Wed, 30 Sep 2020 19:34:39 +0200 (CEST) IronPort-SDR: 9tygHqDr9bGj1QhR/K5ZMxCygvVulLpRxTH6WsvzWEfP+xC8jrymrNtrnVaez+Yl/w0uRJvWWP Z1fTJhPEDzNw== X-IronPort-AV: E=McAfee;i="6000,8403,9760"; a="159839122" X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="159839122" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2020 10:34:39 -0700 IronPort-SDR: 95PB4UCQ0mzc0Ylu12mlyxApCEpCqM3b7fx9XvbCGwGggpH0uQKctZ55O/zpoU+ilTRGItvtrn rJMUaNDdCNHQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="325109844" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.124]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2020 10:34:37 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, ruifeng.wang@arm.com, michaelsh@marvell.com, Arek Kusztal Date: Wed, 30 Sep 2020 19:32:25 +0200 Message-Id: <20200930173226.770-5-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> References: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 4/5] cryptodev: remove list ends from asymmetric crypto api X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 removes RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END, RTE_CRYPTO_ASYM_OP_LIST_END, RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END enumerators from asymmetric crypto API. When asymmetric API will no more be experimental adding new entries will be possible without ABI breakage. Signed-off-by: Arek Kusztal --- lib/librte_cryptodev/rte_crypto_asym.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/librte_cryptodev/rte_crypto_asym.h b/lib/librte_cryptodev/rte_crypto_asym.h index 9c866f553..915a586c1 100644 --- a/lib/librte_cryptodev/rte_crypto_asym.h +++ b/lib/librte_cryptodev/rte_crypto_asym.h @@ -92,10 +92,8 @@ enum rte_crypto_asym_xform_type { /**< Elliptic Curve Digital Signature Algorithm * Perform Signature Generation and Verification. */ - RTE_CRYPTO_ASYM_XFORM_ECPM, + RTE_CRYPTO_ASYM_XFORM_ECPM /**< Elliptic Curve Point Multiplication */ - RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END - /**< End of list */ }; /** @@ -114,9 +112,8 @@ enum rte_crypto_asym_op_type { /**< DH Private Key generation operation */ RTE_CRYPTO_ASYM_OP_PUBLIC_KEY_GENERATE, /**< DH Public Key generation operation */ - RTE_CRYPTO_ASYM_OP_SHARED_SECRET_COMPUTE, + RTE_CRYPTO_ASYM_OP_SHARED_SECRET_COMPUTE /**< DH Shared Secret compute operation */ - RTE_CRYPTO_ASYM_OP_LIST_END }; /** @@ -131,9 +128,8 @@ enum rte_crypto_rsa_padding_type { */ RTE_CRYPTO_RSA_PADDING_OAEP, /**< RSA PKCS#1 OAEP padding scheme */ - RTE_CRYPTO_RSA_PADDING_PSS, + RTE_CRYPTO_RSA_PADDING_PSS /**< RSA PKCS#1 PSS padding scheme */ - RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END }; /** From patchwork Wed Sep 30 17:32:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 79375 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 06248A04B5; Wed, 30 Sep 2020 19:35:52 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 394A01D590; Wed, 30 Sep 2020 19:34:46 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id E2A6C1D58B for ; Wed, 30 Sep 2020 19:34:42 +0200 (CEST) IronPort-SDR: x85uuRxPTOnCEfcxMvfXzcw9Rk+0oSIG1mxvwc7WSPluuLyjGK4LLxoD3RBye2z6kE/0PshW86 S+DOP4BEEVFg== X-IronPort-AV: E=McAfee;i="6000,8403,9760"; a="159839133" X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="159839133" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2020 10:34:42 -0700 IronPort-SDR: e1N/T3uYi5T2CrXopWbOTULg+8qEuLXWA2T9zZ7vZHvGr8tKBu2i39B0Rr4NrhJ6iAoNA3Y0rY 8ZDdhTBvPWmA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,322,1596524400"; d="scan'208";a="325109860" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.124]) by orsmga002.jf.intel.com with ESMTP; 30 Sep 2020 10:34:40 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, fiona.trahe@intel.com, ruifeng.wang@arm.com, michaelsh@marvell.com, Arek Kusztal Date: Wed, 30 Sep 2020 19:32:26 +0200 Message-Id: <20200930173226.770-6-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> References: <20200930173226.770-1-arkadiuszx.kusztal@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 5/5] doc: remove crypto list end deprecation notice X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 removes deprecation notice about removing LIST_END enumerators from Cryptodev. Signed-off-by: Arek Kusztal --- doc/guides/rel_notes/deprecation.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index f9b72acb8..7f203fd7e 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -230,11 +230,6 @@ Deprecation Notices Hence the API will be modified to take two mempool pointers - one for session and one for private data. -* cryptodev: ``RTE_CRYPTO_AEAD_LIST_END`` from ``enum rte_crypto_aead_algorithm``, - ``RTE_CRYPTO_CIPHER_LIST_END`` from ``enum rte_crypto_cipher_algorithm`` and - ``RTE_CRYPTO_AUTH_LIST_END`` from ``enum rte_crypto_auth_algorithm`` - will be removed. - * cryptodev: support for using IV with all sizes is added, J0 still can be used but only when IV length in following structs ``rte_crypto_auth_xform``, ``rte_crypto_aead_xform`` is set to zero. When IV length is greater or equal