From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id A6D02A0679 for ; Tue, 30 Apr 2019 19:02:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9DF5658FE; Tue, 30 Apr 2019 19:02:42 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 84BD458CB for ; Tue, 30 Apr 2019 19:02:40 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E16D130832CC; Tue, 30 Apr 2019 17:02:39 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-211.ams2.redhat.com [10.36.117.211]) by smtp.corp.redhat.com (Postfix) with ESMTP id CD6D06D0B6; Tue, 30 Apr 2019 17:02:38 +0000 (UTC) From: Kevin Traynor To: Fiona Trahe Cc: Akhil Goyal , dpdk stable Date: Tue, 30 Apr 2019 18:01:28 +0100 Message-Id: <20190430170133.2331-33-ktraynor@redhat.com> In-Reply-To: <20190430170133.2331-1-ktraynor@redhat.com> References: <20190430170133.2331-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.44]); Tue, 30 Apr 2019 17:02:39 +0000 (UTC) Subject: [dpdk-stable] patch 'doc: fix missing asymmetric crypto table' has been queued to LTS release 18.11.2 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 05/07/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches can be viewed on a temporary branch at: https://github.com/kevintraynor/dpdk-stable-queue.git Thanks. Kevin Traynor --- >From 8aec0f864f67a471ea2006b86f69739d9c0ac3bf Mon Sep 17 00:00:00 2001 From: Fiona Trahe Date: Wed, 3 Apr 2019 11:38:20 +0100 Subject: [PATCH] doc: fix missing asymmetric crypto table [ upstream commit 7df9d02e68c5e44e008cb6151021c04c428ed735 ] Fixes: 11e5ba72cf67 ("doc: add crypto asymmetric feature list") Signed-off-by: Fiona Trahe Acked-by: Akhil Goyal --- .gitignore | 1 + doc/guides/conf.py | 5 +++++ doc/guides/cryptodevs/features/aesni_gcm.ini | 5 +++++ doc/guides/cryptodevs/features/aesni_mb.ini | 5 +++++ doc/guides/cryptodevs/features/armv8.ini | 5 +++++ doc/guides/cryptodevs/features/caam_jr.ini | 5 +++++ doc/guides/cryptodevs/features/ccp.ini | 5 +++++ doc/guides/cryptodevs/features/default.ini | 9 +++++++++ doc/guides/cryptodevs/features/dpaa2_sec.ini | 5 +++++ doc/guides/cryptodevs/features/dpaa_sec.ini | 5 +++++ doc/guides/cryptodevs/features/kasumi.ini | 5 +++++ doc/guides/cryptodevs/features/mvsam.ini | 5 +++++ doc/guides/cryptodevs/features/null.ini | 5 +++++ doc/guides/cryptodevs/features/octeontx.ini | 5 +++++ doc/guides/cryptodevs/features/qat.ini | 5 +++++ doc/guides/cryptodevs/features/snow3g.ini | 5 +++++ doc/guides/cryptodevs/features/virtio.ini | 5 +++++ doc/guides/cryptodevs/features/zuc.ini | 5 +++++ doc/guides/cryptodevs/openssl.rst | 8 ++++++++ doc/guides/cryptodevs/overview.rst | 7 +++++++ 20 files changed, 105 insertions(+) diff --git a/.gitignore b/.gitignore index 9105e26c5..3d6b35ed6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ doc/guides/cryptodevs/overview_cipher_table.txt doc/guides/cryptodevs/overview_auth_table.txt doc/guides/cryptodevs/overview_aead_table.txt +doc/guides/cryptodevs/overview_asym_table.txt doc/guides/compressdevs/overview_feature_table.txt cscope.out.po diff --git a/doc/guides/conf.py b/doc/guides/conf.py index da99a3f84..a85f6c9d9 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -392,4 +392,9 @@ def setup(app): 'AEAD algorithms in crypto drivers', 'AEAD algorithm') + table_file = dirname(__file__) + '/cryptodevs/overview_asym_table.txt' + generate_overview_table(table_file, 5, + 'Asymmetric', + 'Asymmetric algorithms in crypto drivers', + 'Asymmetric algorithm') table_file = dirname(__file__) + '/compressdevs/overview_feature_table.txt' generate_overview_table(table_file, 1, diff --git a/doc/guides/cryptodevs/features/aesni_gcm.ini b/doc/guides/cryptodevs/features/aesni_gcm.ini index b9e9c9060..fdd3df690 100644 --- a/doc/guides/cryptodevs/features/aesni_gcm.ini +++ b/doc/guides/cryptodevs/features/aesni_gcm.ini @@ -31,2 +31,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'aesni_gcm' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/aesni_mb.ini b/doc/guides/cryptodevs/features/aesni_mb.ini index 0956b80b0..9b4428ef0 100644 --- a/doc/guides/cryptodevs/features/aesni_mb.ini +++ b/doc/guides/cryptodevs/features/aesni_mb.ini @@ -55,2 +55,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'aesni_mb' crypto driver. +; +[Asymmetric] diff --git a/doc/guides/cryptodevs/features/armv8.ini b/doc/guides/cryptodevs/features/armv8.ini index 1e1047714..e588f9021 100644 --- a/doc/guides/cryptodevs/features/armv8.ini +++ b/doc/guides/cryptodevs/features/armv8.ini @@ -27,2 +27,7 @@ SHA256 HMAC = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'armv8' crypto driver. +; +[Asymmetric] diff --git a/doc/guides/cryptodevs/features/caam_jr.ini b/doc/guides/cryptodevs/features/caam_jr.ini index 68f8d8195..c64bd35da 100644 --- a/doc/guides/cryptodevs/features/caam_jr.ini +++ b/doc/guides/cryptodevs/features/caam_jr.ini @@ -45,2 +45,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'dpaa2_sec' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/ccp.ini b/doc/guides/cryptodevs/features/ccp.ini index 4722e135d..2970076b8 100644 --- a/doc/guides/cryptodevs/features/ccp.ini +++ b/doc/guides/cryptodevs/features/ccp.ini @@ -58,2 +58,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'ccp' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/default.ini b/doc/guides/cryptodevs/features/default.ini index 810da0d7d..73ec389ba 100644 --- a/doc/guides/cryptodevs/features/default.ini +++ b/doc/guides/cryptodevs/features/default.ini @@ -96,2 +96,11 @@ AES CCM (128) = AES CCM (192) = AES CCM (256) = +; +; Supported Asymmetric algorithms of a default crypto driver. +; +[Asymmetric] +RSA = +DSA = +Modular Exponentiation = +Modular Inversion = +Diffie-hellman = \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/dpaa2_sec.ini b/doc/guides/cryptodevs/features/dpaa2_sec.ini index 69700df40..9f4e4029c 100644 --- a/doc/guides/cryptodevs/features/dpaa2_sec.ini +++ b/doc/guides/cryptodevs/features/dpaa2_sec.ini @@ -45,2 +45,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'dpaa2_sec' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/dpaa_sec.ini b/doc/guides/cryptodevs/features/dpaa_sec.ini index 937b621c0..954a70808 100644 --- a/doc/guides/cryptodevs/features/dpaa_sec.ini +++ b/doc/guides/cryptodevs/features/dpaa_sec.ini @@ -45,2 +45,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'dpaa_sec' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/kasumi.ini b/doc/guides/cryptodevs/features/kasumi.ini index 0e138f5a6..f3d061009 100644 --- a/doc/guides/cryptodevs/features/kasumi.ini +++ b/doc/guides/cryptodevs/features/kasumi.ini @@ -23,2 +23,7 @@ KASUMI F9 = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'kasumi' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/mvsam.ini b/doc/guides/cryptodevs/features/mvsam.ini index 0cc90a53d..829deff68 100644 --- a/doc/guides/cryptodevs/features/mvsam.ini +++ b/doc/guides/cryptodevs/features/mvsam.ini @@ -53,2 +53,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'mvsam' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/null.ini b/doc/guides/cryptodevs/features/null.ini index ecf5779ac..a1c3e22a3 100644 --- a/doc/guides/cryptodevs/features/null.ini +++ b/doc/guides/cryptodevs/features/null.ini @@ -25,2 +25,7 @@ NULL = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'null' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/octeontx.ini b/doc/guides/cryptodevs/features/octeontx.ini index 307ab88cc..1735b8f5a 100644 --- a/doc/guides/cryptodevs/features/octeontx.ini +++ b/doc/guides/cryptodevs/features/octeontx.ini @@ -61,2 +61,7 @@ AES GCM (128) = Y AES GCM (192) = Y AES GCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'octeontx' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/qat.ini b/doc/guides/cryptodevs/features/qat.ini index 4f15ee0e8..7955d8841 100644 --- a/doc/guides/cryptodevs/features/qat.ini +++ b/doc/guides/cryptodevs/features/qat.ini @@ -61,2 +61,7 @@ AES CCM (128) = Y AES CCM (192) = Y AES CCM (256) = Y + +; +; Supported Asymmetric algorithms of the 'qat' crypto driver. +; +[Asymmetric] diff --git a/doc/guides/cryptodevs/features/snow3g.ini b/doc/guides/cryptodevs/features/snow3g.ini index 277136177..ec2daf6c6 100644 --- a/doc/guides/cryptodevs/features/snow3g.ini +++ b/doc/guides/cryptodevs/features/snow3g.ini @@ -23,2 +23,7 @@ SNOW3G UIA2 = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'snow3g' crypto driver. +; +[Asymmetric] \ No newline at end of file diff --git a/doc/guides/cryptodevs/features/virtio.ini b/doc/guides/cryptodevs/features/virtio.ini index 168fc174c..b59f1669b 100644 --- a/doc/guides/cryptodevs/features/virtio.ini +++ b/doc/guides/cryptodevs/features/virtio.ini @@ -25,2 +25,7 @@ SHA1 HMAC = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'virtio' crypto driver. +; +[Asymmetric] diff --git a/doc/guides/cryptodevs/features/zuc.ini b/doc/guides/cryptodevs/features/zuc.ini index 5bb02afd4..9b6a4287e 100644 --- a/doc/guides/cryptodevs/features/zuc.ini +++ b/doc/guides/cryptodevs/features/zuc.ini @@ -23,2 +23,7 @@ ZUC EIA3 = Y ; [AEAD] + +; +; Supported Asymmetric algorithms of the 'zuc' crypto driver. +; +[Asymmetric] diff --git a/doc/guides/cryptodevs/openssl.rst b/doc/guides/cryptodevs/openssl.rst index bdc30f66f..2ac8090cc 100644 --- a/doc/guides/cryptodevs/openssl.rst +++ b/doc/guides/cryptodevs/openssl.rst @@ -47,4 +47,12 @@ Supported AEAD algorithms: * ``RTE_CRYPTO_AEAD_AES_CCM`` +Supported Asymmetric Crypto algorithms: + +* ``RTE_CRYPTO_ASYM_XFORM_RSA`` +* ``RTE_CRYPTO_ASYM_XFORM_DSA`` +* ``RTE_CRYPTO_ASYM_XFORM_DH`` +* ``RTE_CRYPTO_ASYM_XFORM_MODINV`` +* ``RTE_CRYPTO_ASYM_XFORM_MODEX`` + Installation diff --git a/doc/guides/cryptodevs/overview.rst b/doc/guides/cryptodevs/overview.rst index 607e758da..407f063de 100644 --- a/doc/guides/cryptodevs/overview.rst +++ b/doc/guides/cryptodevs/overview.rst @@ -59,2 +59,9 @@ Supported AEAD Algorithms .. include:: overview_aead_table.txt + +Supported Asymmetric Algorithms +------------------------------- + +.. _table_crypto_pmd_asym_algos: + +.. include:: overview_asym_table.txt -- 2.20.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-04-30 17:58:15.365788051 +0100 +++ 0033-doc-fix-missing-asymmetric-crypto-table.patch 2019-04-30 17:58:13.813139657 +0100 @@ -1 +1 @@ -From 7df9d02e68c5e44e008cb6151021c04c428ed735 Mon Sep 17 00:00:00 2001 +From 8aec0f864f67a471ea2006b86f69739d9c0ac3bf Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 7df9d02e68c5e44e008cb6151021c04c428ed735 ] + @@ -7 +8,0 @@ -Cc: stable@dpdk.org @@ -35 +36 @@ -index b830c33f7..5eda2c31e 100644 +index 9105e26c5..3d6b35ed6 100644 @@ -38 +39 @@ -@@ -8,4 +8,5 @@ doc/guides/cryptodevs/overview_cipher_table.txt +@@ -4,4 +4,5 @@ doc/guides/cryptodevs/overview_cipher_table.txt @@ -43 +44 @@ - + cscope.out.po @@ -59 +60 @@ -index e32e83c20..86303c519 100644 +index b9e9c9060..fdd3df690 100644 @@ -62 +63 @@ -@@ -32,2 +32,7 @@ AES GCM (128) = Y +@@ -31,2 +31,7 @@ AES GCM (128) = Y @@ -72 +73 @@ -index aa4df033d..ee6a07460 100644 +index 0956b80b0..9b4428ef0 100644 @@ -75 +76 @@ -@@ -56,2 +56,7 @@ AES GCM (128) = Y +@@ -55,2 +55,7 @@ AES GCM (128) = Y @@ -122 +123 @@ -index 5f3ed3049..0e06261a5 100644 +index 810da0d7d..73ec389ba 100644 @@ -125 +126 @@ -@@ -98,2 +98,11 @@ AES CCM (128) = +@@ -96,2 +96,11 @@ AES CCM (128) = @@ -217 +218 @@ -index a7c727344..81325801e 100644 +index 4f15ee0e8..7955d8841 100644 @@ -220 +221 @@ -@@ -63,2 +63,7 @@ AES CCM (128) = Y +@@ -61,2 +61,7 @@ AES CCM (128) = Y @@ -266 +267 @@ -index 89aa5bac4..d7269870b 100644 +index bdc30f66f..2ac8090cc 100644 @@ -283 +284 @@ -index d7b7141a9..12f342b0f 100644 +index 607e758da..407f063de 100644 @@ -286 +287 @@ -@@ -65,2 +65,9 @@ Supported AEAD Algorithms +@@ -59,2 +59,9 @@ Supported AEAD Algorithms