mbox series

[v4,0/4] crypto/openssl: EVP api update for 3.0 lib

Message ID 20220614132542.76241-1-kai.ji@intel.com (mailing list archive)
Headers
Series crypto/openssl: EVP api update for 3.0 lib |

Message

Ji, Kai June 14, 2022, 1:25 p.m. UTC
  This patch set update openssl pmd deprecated APIs to EVP
APIs where supported in openssl 3.0 lib

---
v4:
- compilation issue fix

v3:
- rebase to 22.07 rc1

v2:
- addin DSA routine

---

Kai Ji (4):
  crypto/openssl: 3.0 EVP update on HMAC routine
  crypto/openssl: 3.0 EVP update on RSA routine
  crypto/openssl: 3.0 EVP update on DH routine
  crypto/openssl: 3.0 EVP update on DSA routine

 app/test/test_cryptodev_asym.c               |  90 ++-
 drivers/crypto/openssl/compat.h              |  12 +
 drivers/crypto/openssl/openssl_pmd_private.h |  18 +
 drivers/crypto/openssl/rte_openssl_pmd.c     | 698 ++++++++++++++++++-
 drivers/crypto/openssl/rte_openssl_pmd_ops.c | 231 +++++-
 5 files changed, 1013 insertions(+), 36 deletions(-)

--
2.17.1
  

Comments

Akhil Goyal June 21, 2022, 10:16 a.m. UTC | #1
> This patch set update openssl pmd deprecated APIs to EVP
> APIs where supported in openssl 3.0 lib
> 
> ---
> v4:
> - compilation issue fix
> 
> v3:
> - rebase to 22.07 rc1
> 
> v2:
> - addin DSA routine
> 
> ---
> 
> Kai Ji (4):
>   crypto/openssl: 3.0 EVP update on HMAC routine
>   crypto/openssl: 3.0 EVP update on RSA routine
>   crypto/openssl: 3.0 EVP update on DH routine
>   crypto/openssl: 3.0 EVP update on DSA routine
> 
>  app/test/test_cryptodev_asym.c               |  90 ++-
>  drivers/crypto/openssl/compat.h              |  12 +
>  drivers/crypto/openssl/openssl_pmd_private.h |  18 +
>  drivers/crypto/openssl/rte_openssl_pmd.c     | 698 ++++++++++++++++++-
>  drivers/crypto/openssl/rte_openssl_pmd_ops.c | 231 +++++-
>  5 files changed, 1013 insertions(+), 36 deletions(-)


Add release notes too to highlight 3.0 support.