X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/4f178be872a9d28d6302552866b4dc1ecdd80908..2d7536f69d3075ecf69c2ac24a4ca4bf8223f89f:/md5crypt.c diff --git a/md5crypt.c b/md5crypt.c index 7140a3d7..22ef9893 100644 --- a/md5crypt.c +++ b/md5crypt.c @@ -1,9 +1,9 @@ /* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): - * wrote this file. As long as you retain this - * notice you can do whatever you want with this stuff. If we meet some - * day, and you think this stuff is worth it, you can buy me a beer in + * wrote this file. As long as you retain this + * notice you can do whatever you want with this stuff. If we meet some + * day, and you think this stuff is worth it, you can buy me a beer in * return. Poul-Henning Kamp * ---------------------------------------------------------------------------- */ @@ -11,9 +11,11 @@ #include "includes.h" #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) -#include +#include + +#include -RCSID("$Id$"); +#include /* 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); }