From patchwork Wed Aug 5 14:24:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arkadiusz Kusztal X-Patchwork-Id: 75213 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 DB3CBA053A; Wed, 5 Aug 2020 16:25:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C24292C23; Wed, 5 Aug 2020 16:25:19 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 2FCA22BF2 for ; Wed, 5 Aug 2020 16:25:18 +0200 (CEST) IronPort-SDR: HYz1z/kPuZqGXKLdgRlC2sF9MW9Ric2Aqi6f83QCQ/GH2C4/M8JccDXYHO92Sj25aqjarRqORa FIVHGZ2uDzJA== X-IronPort-AV: E=McAfee;i="6000,8403,9703"; a="151763081" X-IronPort-AV: E=Sophos;i="5.75,436,1589266800"; d="scan'208";a="151763081" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Aug 2020 07:25:17 -0700 IronPort-SDR: 2mXQxMTU6LxV0Aj4n1vI4biCvHB3Qh0mrH9Q6277rKtwuZFEh3Y1ncyicMrMlbXQ+PFiUhoPuR FLpGt9nBEfrg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,436,1589266800"; d="scan'208";a="306724190" Received: from unknown (HELO akusztax-MOBL1.ger.corp.intel.com) ([10.104.113.35]) by orsmga002.jf.intel.com with ESMTP; 05 Aug 2020 07:25:13 -0700 From: Arek Kusztal To: dev@dpdk.org Cc: akhil.goyal@nxp.com, anoobj@marvell.com, declan.doherty@intel.com, fiona.trahe@intel.com, asomalap@amd.com, rnagadheeraj@marvell.com, hemant.agrawal@nxp.com, pablo.de.lara.guarch@intel.com, roy.fan.zhang@intel.com, Arek Kusztal Date: Wed, 5 Aug 2020 16:24:57 +0200 Message-Id: <20200805142457.1316-1-arkadiuszx.kusztal@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] doc: announce move of aes gmac algorithm to aead 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 announces removal of RTE_CRYPTO_AUTH_AES_GMAC from rte_crypto_auth_algorithm and addition of RTE_CRYPTO_AEAD_AES_GMAC to rte_crypto_aead_algorithm. Signed-off-by: Arek Kusztal Acked-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index ea4cfa7..6fe12b0 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -151,3 +151,7 @@ Deprecation Notices Python 2 support will be completely removed in 20.11. In 20.08, explicit deprecation warnings will be displayed when running scripts with Python 2. + +* cryptodev: ``RTE_CRYPTO_AUTH_AES_GMAC`` will no longer be included in + ``enum rte_crypto_auth_algorithm``. It will be included in + ``enum rte_crypto_aead_algorithm`` as ``RTE_CRYPTO_AEAD_AES_GMAC``.