DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: fix incomplete crypto dev matrices
@ 2017-01-18 17:35 Pablo de Lara
  2017-01-27 16:27 ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 2+ messages in thread
From: Pablo de Lara @ 2017-01-18 17:35 UTC (permalink / raw)
  To: dev; +Cc: Pablo de Lara

When ZUC PMD was added, it was not added in the
Crypto Device Supported Functionality Matrices.
This commit adds a column in all the matrices, plus
the ZUC EEA3/EIA3 algorithms.

Fixes: cf7685d68f00 ("crypto/zuc: add driver for ZUC library")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
 doc/guides/cryptodevs/overview.rst | 88 +++++++++++++++++++-------------------
 1 file changed, 45 insertions(+), 43 deletions(-)

diff --git a/doc/guides/cryptodevs/overview.rst b/doc/guides/cryptodevs/overview.rst
index 8e03cdd..bd5f0ad 100644
--- a/doc/guides/cryptodevs/overview.rst
+++ b/doc/guides/cryptodevs/overview.rst
@@ -33,66 +33,68 @@ Crypto Device Supported Functionality Matrices
 Supported Feature Flags
 
 .. csv-table::
-   :header: "Feature Flags", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi"
+   :header: "Feature Flags", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi", "zuc"
    :stub-columns: 1
 
-   "RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO",x,x,x,x,x,x
-   "RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO",,,,,,
-   "RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING",x,x,x,x,x,x
-   "RTE_CRYPTODEV_FF_CPU_SSE",,,x,,x,x
-   "RTE_CRYPTODEV_FF_CPU_AVX",,,x,,x,x
-   "RTE_CRYPTODEV_FF_CPU_AVX2",,,x,,,
-   "RTE_CRYPTODEV_FF_CPU_AVX512",,,x,,,
-   "RTE_CRYPTODEV_FF_CPU_AESNI",,,x,x,,
-   "RTE_CRYPTODEV_FF_HW_ACCELERATED",x,,,,,
+   "RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO",x,x,x,x,x,x,x
+   "RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO",,,,,,,
+   "RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING",x,x,x,x,x,x,x
+   "RTE_CRYPTODEV_FF_CPU_SSE",,,x,,x,x,
+   "RTE_CRYPTODEV_FF_CPU_AVX",,,x,,x,x,
+   "RTE_CRYPTODEV_FF_CPU_AVX2",,,x,,,,
+   "RTE_CRYPTODEV_FF_CPU_AVX512",,,x,,,,
+   "RTE_CRYPTODEV_FF_CPU_AESNI",,,x,x,,,
+   "RTE_CRYPTODEV_FF_HW_ACCELERATED",x,,,,,,
 
 Supported Cipher Algorithms
 
 .. csv-table::
-   :header: "Cipher Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi"
+   :header: "Cipher Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi", "zuc"
    :stub-columns: 1
 
-   "NULL",,x,,,,
-   "AES_CBC_128",x,,x,,,
-   "AES_CBC_192",x,,x,,,
-   "AES_CBC_256",x,,x,,,
-   "AES_CTR_128",x,,x,,,
-   "AES_CTR_192",x,,x,,,
-   "AES_CTR_256",x,,x,,,
-   "DES_CBC",x,,,,,
-   "SNOW3G_UEA2",x,,,,x,
-   "KASUMI_F8",,,,,,x
+   "NULL",,x,,,,,
+   "AES_CBC_128",x,,x,,,,
+   "AES_CBC_192",x,,x,,,,
+   "AES_CBC_256",x,,x,,,,
+   "AES_CTR_128",x,,x,,,,
+   "AES_CTR_192",x,,x,,,,
+   "AES_CTR_256",x,,x,,,,
+   "DES_CBC",x,,,,,,
+   "SNOW3G_UEA2",x,,,,x,,
+   "KASUMI_F8",,,,,,x,
+   "ZUC_EEA3",,,,,,,x
 
 Supported Authentication Algorithms
 
 .. csv-table::
-   :header: "Cipher Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi"
+   :header: "Cipher Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi", "zuc"
    :stub-columns: 1
 
-   "NONE",,x,,,,
-   "MD5",,,,,,
-   "MD5_HMAC",,,x,,,
-   "SHA1",,,,,,
-   "SHA1_HMAC",x,,x,,,
-   "SHA224",,,,,,
-   "SHA224_HMAC",,,x,,,
-   "SHA256",,,,,,
-   "SHA256_HMAC",x,,x,,,
-   "SHA384",,,,,,
-   "SHA384_HMAC",,,x,,,
-   "SHA512",,,,,,
-   "SHA512_HMAC",x,,x,,,
-   "AES_XCBC",x,,x,,,
-   "AES_GMAC",,,,x,,
-   "SNOW3G_UIA2",x,,,,x,
-   "KASUMI_F9",,,,,,x
+   "NONE",,x,,,,,
+   "MD5",,,,,,,
+   "MD5_HMAC",,,x,,,,
+   "SHA1",,,,,,,
+   "SHA1_HMAC",x,,x,,,,
+   "SHA224",,,,,,,
+   "SHA224_HMAC",,,x,,,,
+   "SHA256",,,,,,,
+   "SHA256_HMAC",x,,x,,,,
+   "SHA384",,,,,,,
+   "SHA384_HMAC",,,x,,,,
+   "SHA512",,,,,,,
+   "SHA512_HMAC",x,,x,,,,
+   "AES_XCBC",x,,x,,,,
+   "AES_GMAC",,,,x,,,
+   "SNOW3G_UIA2",x,,,,x,,
+   "KASUMI_F9",,,,,,x,
+   "ZUC_EIA3",,,,,,,x
 
 Supported AEAD Algorithms
 
 .. csv-table::
-   :header: "AEAD Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi"
+   :header: "AEAD Algorithms", "qat", "null", "aesni_mb", "aesni_gcm", "snow3g", "kasumi", "zuc"
    :stub-columns: 1
 
-   "AES_GCM_128",x,,,x,,
-   "AES_GCM_192",x,,,,,
-   "AES_GCM_256",x,,,x,,
+   "AES_GCM_128",x,,,x,,,
+   "AES_GCM_192",x,,,,,,
+   "AES_GCM_256",x,,,x,,,
-- 
2.7.4

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: fix incomplete crypto dev matrices
  2017-01-18 17:35 [dpdk-dev] [PATCH] doc: fix incomplete crypto dev matrices Pablo de Lara
@ 2017-01-27 16:27 ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 2+ messages in thread
From: De Lara Guarch, Pablo @ 2017-01-27 16:27 UTC (permalink / raw)
  To: dev



> -----Original Message-----
> From: De Lara Guarch, Pablo
> Sent: Wednesday, January 18, 2017 5:36 PM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo
> Subject: [PATCH] doc: fix incomplete crypto dev matrices
> 
> When ZUC PMD was added, it was not added in the
> Crypto Device Supported Functionality Matrices.
> This commit adds a column in all the matrices, plus
> the ZUC EEA3/EIA3 algorithms.
> 
> Fixes: cf7685d68f00 ("crypto/zuc: add driver for ZUC library")
> 
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

Applied to dpdk-next-crypto.

Pablo

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-01-27 16:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-18 17:35 [dpdk-dev] [PATCH] doc: fix incomplete crypto dev matrices Pablo de Lara
2017-01-27 16:27 ` De Lara Guarch, Pablo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).