mbox series

[v2,0/3] SM2 crypto algorithm support

Message ID cover.1685091909.git.gmuthukrishn@marvell.com (mailing list archive)
Headers
Series SM2 crypto algorithm support |

Message

Gowrishankar Muthukrishnan May 26, 2023, 9:12 a.m. UTC
  This patch series adds SM2 crypto algorithm support, along with tests
verified using Openssl.

v2:
 - addressed suggestions in v1.

Gowrishankar Muthukrishnan (3):
  cryptodev: add SM2 asymmetric crypto algorithm
  test/crypto: add asymmetric SM2 test cases
  crypto/openssl: add SM2 asymmetric crypto support

 app/test/test_cryptodev_asym.c               | 504 +++++++++++++++++++
 app/test/test_cryptodev_sm2_test_vectors.h   | 120 +++++
 doc/guides/cryptodevs/features/default.ini   |   1 +
 doc/guides/cryptodevs/features/openssl.ini   |   1 +
 doc/guides/cryptodevs/openssl.rst            |   1 +
 doc/guides/rel_notes/release_23_07.rst       |   9 +
 drivers/crypto/openssl/openssl_pmd_private.h |   7 +
 drivers/crypto/openssl/rte_openssl_pmd.c     | 245 +++++++++
 drivers/crypto/openssl/rte_openssl_pmd_ops.c | 101 ++++
 lib/cryptodev/rte_crypto_asym.h              |  77 +++
 lib/cryptodev/rte_cryptodev.c                |   1 +
 11 files changed, 1067 insertions(+)
 create mode 100644 app/test/test_cryptodev_sm2_test_vectors.h