mbox series

[v1,0/6] app/crypto-perf: add asymmetric crypto tests

Message ID 20240615115309.2678-1-gmuthukrishn@marvell.com (mailing list archive)
Headers
Series app/crypto-perf: add asymmetric crypto tests |

Message

Gowrishankar Muthukrishnan June 15, 2024, 11:53 a.m. UTC
This patch series adds below asymmetric tests in crypto-perf tool:
  * MODEX group tests (RFC 3526)
  * SM2 tests
  * ECDSA P256R1 tests

Akhil Goyal (1):
  app/crypto-perf: support SM2

Gowrishankar Muthukrishnan (5):
  app/crypto-perf: add modex groups test
  app/crypto-perf: remove redundant local varriable
  app/crypto-perf: fix result location for asymmetric test
  app/crypto-perf: add function to check asymmetric operation
  app/crypto-perf: support ECDSA

 app/test-crypto-perf/cperf_ops.c             | 135 +++-
 app/test-crypto-perf/cperf_options.h         |   8 +
 app/test-crypto-perf/cperf_options_parsing.c |  61 +-
 app/test-crypto-perf/cperf_test_common.c     |  19 +-
 app/test-crypto-perf/cperf_test_common.h     |   2 +
 app/test-crypto-perf/cperf_test_latency.c    |  21 +-
 app/test-crypto-perf/cperf_test_throughput.c |   2 +-
 app/test-crypto-perf/cperf_test_vectors.c    | 773 ++++++++++++++++++-
 app/test-crypto-perf/cperf_test_vectors.h    |  41 +-
 app/test-crypto-perf/cperf_test_verify.c     |   2 +-
 app/test-crypto-perf/main.c                  |  87 ++-
 doc/guides/tools/cryptoperf.rst              |   7 +
 12 files changed, 1131 insertions(+), 27 deletions(-)
  

Comments

Anoob Joseph June 17, 2024, 6:42 a.m. UTC | #1
> 
> This patch series adds below asymmetric tests in crypto-perf tool:
>   * MODEX group tests (RFC 3526)
>   * SM2 tests
>   * ECDSA P256R1 tests
> 
> Akhil Goyal (1):
>   app/crypto-perf: support SM2
> 
> Gowrishankar Muthukrishnan (5):
>   app/crypto-perf: add modex groups test
>   app/crypto-perf: remove redundant local varriable
>   app/crypto-perf: fix result location for asymmetric test
>   app/crypto-perf: add function to check asymmetric operation
>   app/crypto-perf: support ECDSA
> 

Series Acked-by: Anoob Joseph <anoobj@marvell.com>
  
Brian Dooley June 25, 2024, 3:40 p.m. UTC | #2
Hi Gowrishankar,

> -----Original Message-----
> From: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
> Sent: Saturday, June 15, 2024 12:53 PM
> To: dev@dpdk.org
> Cc: Anoob Joseph <anoobj@marvell.com>; Akhil Goyal
> <gakhil@marvell.com>; Gowrishankar Muthukrishnan
> <gmuthukrishn@marvell.com>
> Subject: [PATCH v1 0/6] app/crypto-perf: add asymmetric crypto tests
> 
> This patch series adds below asymmetric tests in crypto-perf tool:
>   * MODEX group tests (RFC 3526)
>   * SM2 tests
>   * ECDSA P256R1 tests
> 
> Akhil Goyal (1):
>   app/crypto-perf: support SM2
> 
> Gowrishankar Muthukrishnan (5):
>   app/crypto-perf: add modex groups test
>   app/crypto-perf: remove redundant local varriable
>   app/crypto-perf: fix result location for asymmetric test
>   app/crypto-perf: add function to check asymmetric operation
>   app/crypto-perf: support ECDSA
> 
>  app/test-crypto-perf/cperf_ops.c             | 135 +++-
>  app/test-crypto-perf/cperf_options.h         |   8 +
>  app/test-crypto-perf/cperf_options_parsing.c |  61 +-
>  app/test-crypto-perf/cperf_test_common.c     |  19 +-
>  app/test-crypto-perf/cperf_test_common.h     |   2 +
>  app/test-crypto-perf/cperf_test_latency.c    |  21 +-
>  app/test-crypto-perf/cperf_test_throughput.c |   2 +-
>  app/test-crypto-perf/cperf_test_vectors.c    | 773 ++++++++++++++++++-
>  app/test-crypto-perf/cperf_test_vectors.h    |  41 +-
>  app/test-crypto-perf/cperf_test_verify.c     |   2 +-
>  app/test-crypto-perf/main.c                  |  87 ++-
>  doc/guides/tools/cryptoperf.rst              |   7 +
>  12 files changed, 1131 insertions(+), 27 deletions(-)
> 
> --
> 2.25.1

Series-acked-by: Brian Dooley <brian.dooley@intel.com>