summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2017-07-04 08:28:54 +0300
committerDmitry Kozlov <xeb@mail.ru>2017-07-04 08:30:00 +0300
commite18b4071237c4772c71b36572b618beae6fc51ed (patch)
tree7986a1f662bd76244a2751e7f94357fee3e911fa /crypto
parentb841b7d1e699b4fc3b24eee414954262fdd10f65 (diff)
downloadaccel-ppp-e18b4071237c4772c71b36572b618beae6fc51ed.tar.gz
accel-ppp-e18b4071237c4772c71b36572b618beae6fc51ed.zip
support for openssl-1.1
Diffstat (limited to 'crypto')
-rw-r--r--crypto/crypto.h5
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