From: Jouni Malinen Date: Sun, 9 Feb 2025 10:05:50 +0000 (+0200) Subject: wolfSSL: Include asn.h to fix build with some library configs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ead26ff58e61a0358ba6033b85f435f5229d4c6;p=thirdparty%2Fhostap.git wolfSSL: Include asn.h to fix build with some library configs It looks like wolfssl/wolfcrypt/asn.h gets pulled in by some of the DPP functionality when --enable-wpas-dpp, but it is not included without that. Include asn.h explicitly now that it is needed for non-DPP cases as well after commit 99239d08de3e ("wolfssl: Implement RSA-OAEP-SHA256 for EAP-AKA privacy protection"). Signed-off-by: Jouni Malinen --- diff --git a/src/crypto/crypto_wolfssl.c b/src/crypto/crypto_wolfssl.c index 737f017d7..7a91202ee 100644 --- a/src/crypto/crypto_wolfssl.c +++ b/src/crypto/crypto_wolfssl.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include