]> andersk Git - openssh.git/blobdiff - fingerprint.c
- Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
[openssh.git] / fingerprint.c
index 100a68d08d02c57634647d830c256c7cd95fb1b8..88d99bfc16c72fb988664b125322994371f870b2 100644 (file)
@@ -32,12 +32,7 @@ RCSID("$Id$");
 
 #include "ssh.h"
 #include "xmalloc.h"
-#ifdef HAVE_OPENSSL
 #include <openssl/md5.h>
-#endif
-#ifdef HAVE_SSL
-#include <ssl/md5.h>
-#endif
 
 #define FPRINT "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x"
 
@@ -51,7 +46,7 @@ fingerprint(BIGNUM *e, BIGNUM *n)
        static char retval[80];
        MD5_CTX md;
        unsigned char d[16];
-       char *buf;
+       unsigned char *buf;
        int nlen, elen;
 
        nlen = BN_num_bytes(n);
This page took 1.472423 seconds and 4 git commands to generate.