From: Jouni Malinen Date: Thu, 23 Jun 2016 10:35:26 +0000 (+0300) Subject: OpenSSL: Pull in header files to check function prototypes X-Git-Tag: hostap_2_6~352 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3787c91da0cc72c106e6ba0c5cf8a66175a531c1;p=thirdparty%2Fhostap.git OpenSSL: Pull in header files to check function prototypes Since crypto_openssl.c is now implementing couple of functions internally, pull in the relevant header files md5.h and aes_wrap.h to make sure the function declaration are consistent. Signed-off-by: Jouni Malinen --- diff --git a/src/crypto/crypto_openssl.c b/src/crypto/crypto_openssl.c index dadd30ea6..a74681fd7 100644 --- a/src/crypto/crypto_openssl.c +++ b/src/crypto/crypto_openssl.c @@ -29,6 +29,8 @@ #include "sha1.h" #include "sha256.h" #include "sha384.h" +#include "md5.h" +#include "aes_wrap.h" #include "crypto.h" #if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)