From 866e7b745845c6daa5365be85b2b7cc3499ce493 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 22 May 2022 23:13:28 +0300 Subject: [PATCH] OpenSSL: Include rsa.h for OpenSSL 3.0 This is needed to get RSA_PKCS1_OAEP_PADDING. Signed-off-by: Jouni Malinen --- src/crypto/crypto_openssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crypto/crypto_openssl.c b/src/crypto/crypto_openssl.c index c6e065f82..c5bfcae68 100644 --- a/src/crypto/crypto_openssl.c +++ b/src/crypto/crypto_openssl.c @@ -25,6 +25,7 @@ #include #include #include +#include #else /* OpenSSL version >= 3.0 */ #include #endif /* OpenSSL version >= 3.0 */