]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: ssl: activate sigalgs feature for AWS-LC
authorWilliam Lallemand <wlallemand@haproxy.com>
Mon, 17 Jun 2024 13:22:28 +0000 (15:22 +0200)
committerWilliam Lallemand <wlallemand@haproxy.com>
Mon, 17 Jun 2024 15:40:49 +0000 (17:40 +0200)
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

index e4e5261eb0fc41b5e7f0b34d1b5bf03e09443bf8..ab4f58e96aded18740183e08d45d6216e4f0ed09 100644 (file)
@@ -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