diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2022-12-20 17:41:43 -0500 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2022-12-21 14:51:34 +0000 |
commit | 24adebad278b88b26bdae5615b6dea94dba7b757 (patch) | |
tree | 9e5ba3e43d7162b42011cef70be3376e7c53071c /src/plugins/quic/quic_crypto.h | |
parent | 15952b261f92959ca14cf6679efc318c12e90de6 (diff) |
quic: fix quic plugin with openssl 3.x
- load openssl legacy providers during quic init
when building with openssl 3.0 or greater
- re-enable quic 'make test' testcases on
ubuntu-22.04
Type: fix
Change-Id: Icfd429b6bc1bddf9f9937baa44cc47cd535ac5f2
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'src/plugins/quic/quic_crypto.h')
-rw-r--r-- | src/plugins/quic/quic_crypto.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/plugins/quic/quic_crypto.h b/src/plugins/quic/quic_crypto.h index 2adb20237a3..7299b613053 100644 --- a/src/plugins/quic/quic_crypto.h +++ b/src/plugins/quic/quic_crypto.h @@ -18,6 +18,19 @@ #include <quicly.h> +#if OPENSSL_VERSION_NUMBER >= 0x30000000L +#include <openssl/provider.h> + +#define quic_load_openssl3_legacy_provider() \ + do \ + { \ + (void) OSSL_PROVIDER_load (NULL, "legacy"); \ + } \ + while (0) +#else +#define quic_load_openssl3_legacy_provider() +#endif + struct quic_ctx_t; extern ptls_cipher_suite_t *quic_crypto_cipher_suites[]; |