mbox series

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

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

Message

Gowrishankar Muthukrishnan June 26, 2024, 8:47 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

Akhil Goyal June 26, 2024, 1:42 p.m. UTC | #1
> Subject: [PATCH v2 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(-)
Applied to dpdk-next-crypto
Thanks