]> andersk Git - openssh.git/blobdiff - fingerprint.c
- (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
[openssh.git] / fingerprint.c
index 100a68d08d02c57634647d830c256c7cd95fb1b8..801f6a6e297c58c293012c42cc1c768e1f1d7211 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$Id$");
+RCSID("$OpenBSD: fingerprint.c,v 1.7 2000/06/20 01:39:41 markus Exp $");
 
 #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 0.11123 seconds and 4 git commands to generate.