diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-22 10:45:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-23 17:06:40 +0200 |
commit | 9ad313dcb89b540955500538d47ca49b55d60b3c (patch) | |
tree | 7bdfd5febb0694a90326ebef8e0286d9a8ec4fc4 /lib | |
parent | 0dc9a8019962d31787c4929d36de6817ae3090e7 (diff) |
md4: include the mbedtls config.h to get the MD4 info
Diffstat (limited to 'lib')
-rw-r--r-- | lib/md4.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -41,6 +41,9 @@ #ifdef USE_OPENSSL #include <openssl/opensslconf.h> #endif +#ifdef USE_MBEDTLS +#include <mbedtls/config.h> +#endif /* The NSS, OS/400, and when not included, OpenSSL and mbed TLS crypto * libraries do not provide the MD4 hash algorithm, so we use this |