compilation fixed with older OpenSSL versions

This commit is contained in:
oleg 2018-09-23 21:10:52 -07:00
parent 744bdadf58
commit 943d2435df

View File

@ -80,7 +80,10 @@
#include <openssl/aes.h>
#include <openssl/err.h>
#include <openssl/pem.h>
#include <openssl/modes.h>
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
#include <openssl/modes.h>
#endif
#ifdef __cplusplus
extern "C" {