All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] doc/guides: fix name of algorithm
@ 2016-09-13 11:06 Deepak Kumar Jain
  2016-09-15 13:58 ` Trahe, Fiona
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Deepak Kumar Jain @ 2016-09-13 11:06 UTC (permalink / raw)
  To: dev; +Cc: john.mcnamara, pablo.de.lara.guarch, Deepak Kumar Jain

Update documentation with correct names of algorithm supported.

Fixes: 1703e94ac5cee ("qat: add driver for QuickAssist devices")

Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
---
 doc/guides/cryptodevs/qat.rst | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index 325004c..72c116a 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -42,13 +42,13 @@ The QAT PMD has support for:
 
 Cipher algorithms:
 
-* ``RTE_CRYPTO_SYM_CIPHER_AES128_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES192_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES256_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES128_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_AES192_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_AES256_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_SNOW3G_UEA2``
+* ``RTE_CRYPTO_CIPHER_AES128_CBC``
+* ``RTE_CRYPTO_CIPHER_AES192_CBC``
+* ``RTE_CRYPTO_CIPHER_AES256_CBC``
+* ``RTE_CRYPTO_CIPHER_AES128_CTR``
+* ``RTE_CRYPTO_CIPHER_AES192_CTR``
+* ``RTE_CRYPTO_CIPHER_AES256_CTR``
+* ``RTE_CRYPTO_CIPHER_SNOW3G_UEA2``
 * ``RTE_CRYPTO_CIPHER_AES_GCM``
 * ``RTE_CRYPTO_CIPHER_NULL``
 
-- 
2.5.5

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

* Re: [PATCH] doc/guides: fix name of algorithm
  2016-09-13 11:06 [PATCH] doc/guides: fix name of algorithm Deepak Kumar Jain
@ 2016-09-15 13:58 ` Trahe, Fiona
  2016-09-17  1:43 ` De Lara Guarch, Pablo
  2016-09-19 11:14 ` [PATCH v2] " Deepak Kumar Jain
  2 siblings, 0 replies; 5+ messages in thread
From: Trahe, Fiona @ 2016-09-15 13:58 UTC (permalink / raw)
  To: Jain, Deepak K, dev; +Cc: Mcnamara, John, De Lara Guarch, Pablo, Jain, Deepak K



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Deepak Kumar Jain
> Sent: Tuesday, September 13, 2016 12:06 PM
> To: dev@dpdk.org
> Cc: Mcnamara, John <john.mcnamara@intel.com>; De Lara Guarch, Pablo
> <pablo.de.lara.guarch@intel.com>; Jain, Deepak K <deepak.k.jain@intel.com>
> Subject: [dpdk-dev] [PATCH] doc/guides: fix name of algorithm
> 
> Update documentation with correct names of algorithm supported.
> 
> Fixes: 1703e94ac5cee ("qat: add driver for QuickAssist devices")
> 
> Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>

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

* Re: [PATCH] doc/guides: fix name of algorithm
  2016-09-13 11:06 [PATCH] doc/guides: fix name of algorithm Deepak Kumar Jain
  2016-09-15 13:58 ` Trahe, Fiona
@ 2016-09-17  1:43 ` De Lara Guarch, Pablo
  2016-09-19 11:14 ` [PATCH v2] " Deepak Kumar Jain
  2 siblings, 0 replies; 5+ messages in thread
From: De Lara Guarch, Pablo @ 2016-09-17  1:43 UTC (permalink / raw)
  To: Jain, Deepak K, dev; +Cc: Mcnamara, John

Hi Deepak,

> -----Original Message-----
> From: Jain, Deepak K
> Sent: Tuesday, September 13, 2016 4:06 AM
> To: dev@dpdk.org
> Cc: Mcnamara, John; De Lara Guarch, Pablo; Jain, Deepak K
> Subject: [PATCH] doc/guides: fix name of algorithm
> 
> Update documentation with correct names of algorithm supported.
> 
> Fixes: 1703e94ac5cee ("qat: add driver for QuickAssist devices")
> 
> Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>

Could you extend this patch and fix the names on the other documents
(aesni_mb.rst, snow3g.rst and kasumi.rst)?

Thanks!
Pablo

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

* [PATCH v2] doc/guides: fix name of algorithm
  2016-09-13 11:06 [PATCH] doc/guides: fix name of algorithm Deepak Kumar Jain
  2016-09-15 13:58 ` Trahe, Fiona
  2016-09-17  1:43 ` De Lara Guarch, Pablo
@ 2016-09-19 11:14 ` Deepak Kumar Jain
  2016-09-19 20:25   ` De Lara Guarch, Pablo
  2 siblings, 1 reply; 5+ messages in thread
From: Deepak Kumar Jain @ 2016-09-19 11:14 UTC (permalink / raw)
  To: dev; +Cc: pablo.de.lara.guarch, Deepak Kumar JAIN

From: Deepak Kumar JAIN <deepak.k.jain@intel.com>

Update documentation with correct names of algorithm supported.

Fixes: 1703e94ac5cee ("qat: add driver for QuickAssist devices")

Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
---

Changes in v2:
* Extended fixes in AESNI, KASUMI and SNOW3G PMD.

 doc/guides/cryptodevs/aesni_mb.rst | 18 +++++++++---------
 doc/guides/cryptodevs/kasumi.rst   |  4 ++--
 doc/guides/cryptodevs/qat.rst      | 14 +++++++-------
 doc/guides/cryptodevs/snow3g.rst   |  4 ++--
 4 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/doc/guides/cryptodevs/aesni_mb.rst b/doc/guides/cryptodevs/aesni_mb.rst
index 60a8914..655515a 100644
--- a/doc/guides/cryptodevs/aesni_mb.rst
+++ b/doc/guides/cryptodevs/aesni_mb.rst
@@ -45,18 +45,18 @@ AESNI MB PMD has support for:
 
 Cipher algorithms:
 
-* RTE_CRYPTO_SYM_CIPHER_AES128_CBC
-* RTE_CRYPTO_SYM_CIPHER_AES192_CBC
-* RTE_CRYPTO_SYM_CIPHER_AES256_CBC
-* RTE_CRYPTO_SYM_CIPHER_AES128_CTR
-* RTE_CRYPTO_SYM_CIPHER_AES192_CTR
-* RTE_CRYPTO_SYM_CIPHER_AES256_CTR
+* RTE_CRYPTO_CIPHER_AES128_CBC
+* RTE_CRYPTO_CIPHER_AES192_CBC
+* RTE_CRYPTO_CIPHER_AES256_CBC
+* RTE_CRYPTO_CIPHER_AES128_CTR
+* RTE_CRYPTO_CIPHER_AES192_CTR
+* RTE_CRYPTO_CIPHER_AES256_CTR
 
 Hash algorithms:
 
-* RTE_CRYPTO_SYM_HASH_SHA1_HMAC
-* RTE_CRYPTO_SYM_HASH_SHA256_HMAC
-* RTE_CRYPTO_SYM_HASH_SHA512_HMAC
+* RTE_CRYPTO_HASH_SHA1_HMAC
+* RTE_CRYPTO_HASH_SHA256_HMAC
+* RTE_CRYPTO_HASH_SHA512_HMAC
 
 Limitations
 -----------
diff --git a/doc/guides/cryptodevs/kasumi.rst b/doc/guides/cryptodevs/kasumi.rst
index 7346b21..8b5f172 100644
--- a/doc/guides/cryptodevs/kasumi.rst
+++ b/doc/guides/cryptodevs/kasumi.rst
@@ -41,11 +41,11 @@ KASUMI PMD has support for:
 
 Cipher algorithm:
 
-* RTE_CRYPTO_SYM_CIPHER_KASUMI_F8
+* RTE_CRYPTO_CIPHER_KASUMI_F8
 
 Authentication algorithm:
 
-* RTE_CRYPTO_SYM_AUTH_KASUMI_F9
+* RTE_CRYPTO_AUTH_KASUMI_F9
 
 Limitations
 -----------
diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index 326b228..c86058a 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -41,13 +41,13 @@ The QAT PMD has support for:
 
 Cipher algorithms:
 
-* ``RTE_CRYPTO_SYM_CIPHER_AES128_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES192_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES256_CBC``
-* ``RTE_CRYPTO_SYM_CIPHER_AES128_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_AES192_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_AES256_CTR``
-* ``RTE_CRYPTO_SYM_CIPHER_SNOW3G_UEA2``
+* ``RTE_CRYPTO_CIPHER_AES128_CBC``
+* ``RTE_CRYPTO_CIPHER_AES192_CBC``
+* ``RTE_CRYPTO_CIPHER_AES256_CBC``
+* ``RTE_CRYPTO_CIPHER_AES128_CTR``
+* ``RTE_CRYPTO_CIPHER_AES192_CTR``
+* ``RTE_CRYPTO_CIPHER_AES256_CTR``
+* ``RTE_CRYPTO_CIPHER_SNOW3G_UEA2``
 * ``RTE_CRYPTO_CIPHER_AES_GCM``
 * ``RTE_CRYPTO_CIPHER_NULL``
 
diff --git a/doc/guides/cryptodevs/snow3g.rst b/doc/guides/cryptodevs/snow3g.rst
index 670a62a..11d181b 100644
--- a/doc/guides/cryptodevs/snow3g.rst
+++ b/doc/guides/cryptodevs/snow3g.rst
@@ -41,11 +41,11 @@ SNOW 3G PMD has support for:
 
 Cipher algorithm:
 
-* RTE_CRYPTO_SYM_CIPHER_SNOW3G_UEA2
+* RTE_CRYPTO_CIPHER_SNOW3G_UEA2
 
 Authentication algorithm:
 
-* RTE_CRYPTO_SYM_AUTH_SNOW3G_UIA2
+* RTE_CRYPTO_AUTH_SNOW3G_UIA2
 
 Limitations
 -----------
-- 
2.5.5

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

* Re: [PATCH v2] doc/guides: fix name of algorithm
  2016-09-19 11:14 ` [PATCH v2] " Deepak Kumar Jain
@ 2016-09-19 20:25   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 5+ messages in thread
From: De Lara Guarch, Pablo @ 2016-09-19 20:25 UTC (permalink / raw)
  To: Jain, Deepak K, dev



> -----Original Message-----
> From: Jain, Deepak K
> Sent: Monday, September 19, 2016 4:15 AM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo; Jain, Deepak K
> Subject: [PATCH v2] doc/guides: fix name of algorithm
> 
> From: Deepak Kumar JAIN <deepak.k.jain@intel.com>
> 
> Update documentation with correct names of algorithm supported.
> 
> Fixes: 1703e94ac5cee ("qat: add driver for QuickAssist devices")
> 
> Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
> Acked-by: Fiona Trahe <fiona.trahe@intel.com>

Applied to dpdk-next-crypto.
Thanks,

Pablo

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

end of thread, other threads:[~2016-09-19 20:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-13 11:06 [PATCH] doc/guides: fix name of algorithm Deepak Kumar Jain
2016-09-15 13:58 ` Trahe, Fiona
2016-09-17  1:43 ` De Lara Guarch, Pablo
2016-09-19 11:14 ` [PATCH v2] " Deepak Kumar Jain
2016-09-19 20:25   ` De Lara Guarch, Pablo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.