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.
This commit is contained in:
William Lallemand 2024-06-17 15:22:28 +02:00
parent ed9b8fec49
commit 30a432d198
1 changed files with 1 additions and 0 deletions

View 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