This was fixed for 1.0 but missing for 1.1.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
ENGINE_load_builtin_engines();
ENGINE_register_all_complete();
-
+#if OPENSSL_API_COMPAT < 0x10100000L
ERR_load_crypto_strings();
OpenSSL_add_all_algorithms();
+#endif
if(!RAND_status()) {
fprintf(stderr, "Not enough entropy for the PRNG!\n");
}
void crypto_exit(void) {
+#if OPENSSL_API_COMPAT < 0x10100000L
EVP_cleanup();
ERR_free_strings();
ENGINE_cleanup();
+#endif
random_exit();
}
#include <openssl/pem.h>
#include <openssl/err.h>
+#include <openssl/rsa.h>
#define TINC_RSA_INTERNAL
typedef RSA rsa_t;