Displaying 1 result from an estimated 1 matches for "ssh_dont_redef_evp".
2005 Nov 20
0
[PATCH] Optionally enable OpenSSL hardware support
...s/openssh_cvs/openbsd-compat/openssl-compat.c,v
retrieving revision 1.2
diff -u -p -r1.2 openssl-compat.c
--- openbsd-compat/openssl-compat.c 17 Jun 2005 11:15:21 -0000 1.2
+++ openbsd-compat/openssl-compat.c 1 Oct 2005 08:58:50 -0000
@@ -18,7 +18,11 @@
#include "includes.h"
-#define SSH_DONT_REDEF_EVP
+#ifdef USE_OPENSSL_ENGINE
+# include <openssl/engine.h>
+#endif
+
+#define SSH_DONT_OVERLOAD_OPENSSL_FUNCS
#include "openssl-compat.h"
#ifdef SSH_OLD_EVP
@@ -44,3 +48,15 @@ ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CT
return 1;
}
#endif
+
+void
+ssh_SSLeay_add_all_algorithms(vo...