support --without-openssl at configure time

Disables and removes dependency on OpenSSL. Many features don't
work and the set of crypto options is greatly restricted. This
will only work on system with native arc4random or /dev/urandom.

Considered highly experimental for now.
diff --git a/kexgex.c b/kexgex.c
index c2e6bc1..d1fa1a0 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -26,6 +26,8 @@
 
 #include "includes.h"
 
+#ifdef WITH_OPENSSL
+
 #include <sys/types.h>
 
 #include <openssl/evp.h>
@@ -96,3 +98,4 @@
 	*hash = digest;
 	*hashlen = ssh_digest_bytes(hash_alg);
 }
+#endif /* WITH_OPENSSL */