From: William Lallemand Date: Mon, 17 Jun 2024 13:22:28 +0000 (+0200) Subject: MINOR: ssl: activate sigalgs feature for AWS-LC X-Git-Tag: v3.1-dev2~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=30a432d19824d5bb4678b697b19ce4ed76d13ec5;p=thirdparty%2Fhaproxy.git 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. --- 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