From 30a432d19824d5bb4678b697b19ce4ed76d13ec5 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 17 Jun 2024 15:22:28 +0200 Subject: [PATCH] MINOR: ssl: activate sigalgs feature for AWS-LC AWSLC lacks the SSL_CTX_set1_sigalgs_list define, however the function exists, which disables the feature in HAProxy, even if we could have build with it. SSL_CTX_set1_client_sigalgs_list() is not available, though. This patch introduce the define so the feature is enabled. --- include/haproxy/openssl-compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/haproxy/openssl-compat.h b/include/haproxy/openssl-compat.h index e4e5261eb0..ab4f58e96a 100644 --- a/include/haproxy/openssl-compat.h +++ b/include/haproxy/openssl-compat.h @@ -50,6 +50,7 @@ #if defined(USE_OPENSSL_AWSLC) #define OPENSSL_NO_DH +#define SSL_CTX_set1_sigalgs_list SSL_CTX_set1_sigalgs_list #endif -- 2.47.2