DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v1] doc: update FIPS docs
@ 2022-01-28 11:08 Jakub Poczatek
  2022-01-28 11:15 ` Zhang, Roy Fan
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jakub Poczatek @ 2022-01-28 11:08 UTC (permalink / raw)
  To: Marko Kovacevic; +Cc: dev, Jakub Poczatek

Added missing step for converting SHA request files to correct
format. Replaced AES_GCM with GCM to follow the correct
naming format.

Signed-off-by: Jakub Poczatek <jakub.poczatek@intel.com>
---
 doc/guides/sample_app_ug/fips_validation.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/guides/sample_app_ug/fips_validation.rst b/doc/guides/sample_app_ug/fips_validation.rst
index 56df434215..39baea3346 100644
--- a/doc/guides/sample_app_ug/fips_validation.rst
+++ b/doc/guides/sample_app_ug/fips_validation.rst
@@ -77,11 +77,12 @@ Compiling the Application
     .. code-block:: console
 
          dos2unix AES/req/*
-         dos2unix AES_GCM/req/*
+         dos2unix GCM/req/*
          dos2unix CCM/req/*
          dos2unix CMAC/req/*
          dos2unix HMAC/req/*
          dos2unix TDES/req/*
+         dos2unix SHA/req/*
 
 Running the Application
 -----------------------
-- 
2.25.1


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

* RE: [PATCH v1] doc: update FIPS docs
  2022-01-28 11:08 [PATCH v1] doc: update FIPS docs Jakub Poczatek
@ 2022-01-28 11:15 ` Zhang, Roy Fan
  2022-02-08 21:41 ` [EXT] " Akhil Goyal
  2022-02-09 11:36 ` [PATCH v2] " Jakub Poczatek
  2 siblings, 0 replies; 5+ messages in thread
From: Zhang, Roy Fan @ 2022-01-28 11:15 UTC (permalink / raw)
  To: Poczatek, Jakub, Kovacevic, Marko; +Cc: dev, Poczatek, Jakub

> -----Original Message-----
> From: Jakub Poczatek <jakub.poczatek@intel.com>
> Sent: Friday, January 28, 2022 11:08 AM
> To: Kovacevic, Marko <marko.kovacevic@intel.com>
> Cc: dev@dpdk.org; Poczatek, Jakub <jakub.poczatek@intel.com>
> Subject: [PATCH v1] doc: update FIPS docs
> 
> Added missing step for converting SHA request files to correct
> format. Replaced AES_GCM with GCM to follow the correct
> naming format.
> 
> Signed-off-by: Jakub Poczatek <jakub.poczatek@intel.com>
> ---
>  doc/guides/sample_app_ug/fips_validation.rst | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/doc/guides/sample_app_ug/fips_validation.rst
> b/doc/guides/sample_app_ug/fips_validation.rst
> index 56df434215..39baea3346 100644
> --- a/doc/guides/sample_app_ug/fips_validation.rst
> +++ b/doc/guides/sample_app_ug/fips_validation.rst
> @@ -77,11 +77,12 @@ Compiling the Application
>      .. code-block:: console
> 
>           dos2unix AES/req/*
> -         dos2unix AES_GCM/req/*
> +         dos2unix GCM/req/*
>           dos2unix CCM/req/*
>           dos2unix CMAC/req/*
>           dos2unix HMAC/req/*
>           dos2unix TDES/req/*
> +         dos2unix SHA/req/*
> 
>  Running the Application
>  -----------------------
> --
> 2.25.1

Hi Jakub, thanks and welcome to the team!
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>


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

* RE: [EXT] [PATCH v1] doc: update FIPS docs
  2022-01-28 11:08 [PATCH v1] doc: update FIPS docs Jakub Poczatek
  2022-01-28 11:15 ` Zhang, Roy Fan
@ 2022-02-08 21:41 ` Akhil Goyal
  2022-02-09 11:36 ` [PATCH v2] " Jakub Poczatek
  2 siblings, 0 replies; 5+ messages in thread
From: Akhil Goyal @ 2022-02-08 21:41 UTC (permalink / raw)
  To: Jakub Poczatek, Marko Kovacevic; +Cc: dev

> Added missing step for converting SHA request files to correct
> format. Replaced AES_GCM with GCM to follow the correct
> naming format.
> 
> Signed-off-by: Jakub Poczatek <jakub.poczatek@intel.com>
> ---
Please add Fixes tag where SHA and AES were supported.
Also cc stable@dpdk.org

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

* [PATCH v2] doc: update FIPS docs
  2022-01-28 11:08 [PATCH v1] doc: update FIPS docs Jakub Poczatek
  2022-01-28 11:15 ` Zhang, Roy Fan
  2022-02-08 21:41 ` [EXT] " Akhil Goyal
@ 2022-02-09 11:36 ` Jakub Poczatek
  2022-02-23  9:28   ` [EXT] " Akhil Goyal
  2 siblings, 1 reply; 5+ messages in thread
From: Jakub Poczatek @ 2022-02-09 11:36 UTC (permalink / raw)
  To: Marko Kovacevic; +Cc: dev, Jakub Poczatek, stable, Fan Zhang

Added missing step for converting SHA request files to correct
format. Replaced AES_GCM with GCM to follow the correct
naming format.

Fixes: 3d0fad56b74 ("examples/fips_validation: add crypto FIPS application")
Cc: stable@dpdk.org

Signed-off-by: Jakub Poczatek <jakub.poczatek@intel.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
---
 doc/guides/sample_app_ug/fips_validation.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/guides/sample_app_ug/fips_validation.rst b/doc/guides/sample_app_ug/fips_validation.rst
index 56df434215..39baea3346 100644
--- a/doc/guides/sample_app_ug/fips_validation.rst
+++ b/doc/guides/sample_app_ug/fips_validation.rst
@@ -77,11 +77,12 @@ Compiling the Application
     .. code-block:: console
 
          dos2unix AES/req/*
-         dos2unix AES_GCM/req/*
+         dos2unix GCM/req/*
          dos2unix CCM/req/*
          dos2unix CMAC/req/*
          dos2unix HMAC/req/*
          dos2unix TDES/req/*
+         dos2unix SHA/req/*
 
 Running the Application
 -----------------------
-- 
2.25.1


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

* RE: [EXT] [PATCH v2] doc: update FIPS docs
  2022-02-09 11:36 ` [PATCH v2] " Jakub Poczatek
@ 2022-02-23  9:28   ` Akhil Goyal
  0 siblings, 0 replies; 5+ messages in thread
From: Akhil Goyal @ 2022-02-23  9:28 UTC (permalink / raw)
  To: Jakub Poczatek, Marko Kovacevic; +Cc: dev, stable, Fan Zhang

> Added missing step for converting SHA request files to correct
> format. Replaced AES_GCM with GCM to follow the correct
> naming format.
> 
> Fixes: 3d0fad56b74 ("examples/fips_validation: add crypto FIPS application")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Jakub Poczatek <jakub.poczatek@intel.com>
> Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Applied to dpdk-next-crypto

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

end of thread, other threads:[~2022-02-23  9:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-28 11:08 [PATCH v1] doc: update FIPS docs Jakub Poczatek
2022-01-28 11:15 ` Zhang, Roy Fan
2022-02-08 21:41 ` [EXT] " Akhil Goyal
2022-02-09 11:36 ` [PATCH v2] " Jakub Poczatek
2022-02-23  9:28   ` [EXT] " Akhil Goyal

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).