]> andersk Git - openssh.git/blobdiff - md5crypt.c
- djm@cvs.openbsd.org 2010/01/27 19:21:39
[openssh.git] / md5crypt.c
index c939717cc426dd6195673a7f1b6acc642dfef5da..22ef9893356eb0bcb65917002665415a4b68b599 100644 (file)
 #include "includes.h"
 
 #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
-#include <openssl/md5.h>
+#include <sys/types.h>
+
+#include <string.h>
 
-RCSID("$Id$");
+#include <openssl/md5.h>
 
 /* 0 ... 63 => ascii - 64 */
 static unsigned char itoa64[] =
@@ -35,7 +37,7 @@ to64(unsigned long v, int n)
                *s++ = itoa64[v&0x3f];
                v >>= 6;
        }
-       
+
        return (buf);
 }
 
This page took 0.122396 seconds and 4 git commands to generate.