diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2017-07-04 08:28:54 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2017-07-04 08:30:00 +0300 |
commit | e18b4071237c4772c71b36572b618beae6fc51ed (patch) | |
tree | 7986a1f662bd76244a2751e7f94357fee3e911fa /crypto | |
parent | b841b7d1e699b4fc3b24eee414954262fdd10f65 (diff) | |
download | accel-ppp-e18b4071237c4772c71b36572b618beae6fc51ed.tar.gz accel-ppp-e18b4071237c4772c71b36572b618beae6fc51ed.zip |
support for openssl-1.1
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/crypto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/crypto.h b/crypto/crypto.h index 3fbc3282..9e2e8401 100644 --- a/crypto/crypto.h +++ b/crypto/crypto.h @@ -7,7 +7,12 @@ #include <openssl/md5.h> #include <openssl/sha.h> #include <openssl/des.h> +#include <openssl/evp.h> +#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined (LIBRESSL_VERSION_NUMBER) +#define EVP_MD_CTX_new EVP_MD_CTX_create +#define EVP_MD_CTX_free EVP_MD_CTX_destroy +#endif #else #ifdef CRYPTO_TOMCRYPT |