freebsd-dev/crypto/openssh/md5crypt.c

168 lines
4.0 KiB
C
Raw Normal View History

2002-06-27 22:31:32 +00:00
/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
2004-02-26 10:38:49 +00:00
* <phk@login.dknet.dk> 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
2004-01-07 11:10:17 +00:00
* return. Poul-Henning Kamp
2002-06-27 22:31:32 +00:00
* ----------------------------------------------------------------------------
*/
#include "includes.h"
#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <string.h>
2002-06-27 22:31:32 +00:00
2006-09-30 13:29:51 +00:00
#include <openssl/md5.h>
2004-01-07 11:10:17 +00:00
/* 0 ... 63 => ascii - 64 */
static unsigned char itoa64[] =
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
static char *magic = "$1$";
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
static char *
to64(unsigned long v, int n)
2002-06-27 22:31:32 +00:00
{
2004-01-07 11:10:17 +00:00
static char buf[5];
char *s = buf;
if (n > 4)
return (NULL);
memset(buf, '\0', sizeof(buf));
2002-06-27 22:31:32 +00:00
while (--n >= 0) {
*s++ = itoa64[v&0x3f];
v >>= 6;
}
2004-02-26 10:38:49 +00:00
2004-01-07 11:10:17 +00:00
return (buf);
2002-06-27 22:31:32 +00:00
}
int
is_md5_salt(const char *salt)
{
2004-01-07 11:10:17 +00:00
return (strncmp(salt, magic, strlen(magic)) == 0);
2002-06-27 22:31:32 +00:00
}
char *
md5_crypt(const char *pw, const char *salt)
{
2004-01-07 11:10:17 +00:00
static char passwd[120], salt_copy[9], *p;
static const char *sp, *ep;
unsigned char final[16];
int sl, pl, i, j;
MD5_CTX ctx, ctx1;
2002-06-27 22:31:32 +00:00
unsigned long l;
/* Refine the Salt first */
sp = salt;
/* If it starts with the magic string, then skip that */
2004-01-07 11:10:17 +00:00
if(strncmp(sp, magic, strlen(magic)) == 0)
2002-06-27 22:31:32 +00:00
sp += strlen(magic);
/* It stops at the first '$', max 8 chars */
2004-01-07 11:10:17 +00:00
for (ep = sp; *ep != '$'; ep++) {
if (*ep == '\0' || ep >= (sp + 8))
return (NULL);
}
2002-06-27 22:31:32 +00:00
/* get the length of the true salt */
sl = ep - sp;
2004-01-07 11:10:17 +00:00
/* Stash the salt */
memcpy(salt_copy, sp, sl);
salt_copy[sl] = '\0';
2002-06-27 22:31:32 +00:00
MD5_Init(&ctx);
/* The password first, since that is what is most unknown */
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx, pw, strlen(pw));
2002-06-27 22:31:32 +00:00
/* Then our magic string */
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx, magic, strlen(magic));
2002-06-27 22:31:32 +00:00
/* Then the raw salt */
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx, sp, sl);
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
/* Then just as many characters of the MD5(pw, salt, pw) */
2002-06-27 22:31:32 +00:00
MD5_Init(&ctx1);
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx1, pw, strlen(pw));
MD5_Update(&ctx1, sp, sl);
MD5_Update(&ctx1, pw, strlen(pw));
MD5_Final(final, &ctx1);
2002-06-27 22:31:32 +00:00
for(pl = strlen(pw); pl > 0; pl -= 16)
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx, final, pl > 16 ? 16 : pl);
2002-06-27 22:31:32 +00:00
/* Don't leave anything around in vm they could use. */
2004-01-07 11:10:17 +00:00
memset(final, '\0', sizeof final);
2002-06-27 22:31:32 +00:00
/* Then something really weird... */
2004-01-07 11:10:17 +00:00
for (j = 0, i = strlen(pw); i != 0; i >>= 1)
if (i & 1)
MD5_Update(&ctx, final + j, 1);
2002-06-27 22:31:32 +00:00
else
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx, pw + j, 1);
2002-06-27 22:31:32 +00:00
/* Now make the output string */
2004-01-07 11:10:17 +00:00
snprintf(passwd, sizeof(passwd), "%s%s$", magic, salt_copy);
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
MD5_Final(final, &ctx);
2002-06-27 22:31:32 +00:00
/*
* and now, just to make sure things don't run too fast
* On a 60 Mhz Pentium this takes 34 msec, so you would
* need 30 seconds to build a 1000 entry dictionary...
*/
2004-01-07 11:10:17 +00:00
for(i = 0; i < 1000; i++) {
2002-06-27 22:31:32 +00:00
MD5_Init(&ctx1);
2004-01-07 11:10:17 +00:00
if (i & 1)
MD5_Update(&ctx1, pw, strlen(pw));
2002-06-27 22:31:32 +00:00
else
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx1, final, 16);
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
if (i % 3)
MD5_Update(&ctx1, sp, sl);
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
if (i % 7)
MD5_Update(&ctx1, pw, strlen(pw));
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
if (i & 1)
MD5_Update(&ctx1, final, 16);
2002-06-27 22:31:32 +00:00
else
2004-01-07 11:10:17 +00:00
MD5_Update(&ctx1, pw, strlen(pw));
MD5_Final(final, &ctx1);
2002-06-27 22:31:32 +00:00
}
p = passwd + strlen(passwd);
2004-01-07 11:10:17 +00:00
l = (final[ 0]<<16) | (final[ 6]<<8) | final[12];
strlcat(passwd, to64(l, 4), sizeof(passwd));
l = (final[ 1]<<16) | (final[ 7]<<8) | final[13];
strlcat(passwd, to64(l, 4), sizeof(passwd));
l = (final[ 2]<<16) | (final[ 8]<<8) | final[14];
strlcat(passwd, to64(l, 4), sizeof(passwd));
l = (final[ 3]<<16) | (final[ 9]<<8) | final[15];
strlcat(passwd, to64(l, 4), sizeof(passwd));
l = (final[ 4]<<16) | (final[10]<<8) | final[ 5];
strlcat(passwd, to64(l, 4), sizeof(passwd));
l = final[11] ;
strlcat(passwd, to64(l, 2), sizeof(passwd));
2002-06-27 22:31:32 +00:00
/* Don't leave anything around in vm they could use. */
2004-01-07 11:10:17 +00:00
memset(final, 0, sizeof(final));
memset(salt_copy, 0, sizeof(salt_copy));
memset(&ctx, 0, sizeof(ctx));
memset(&ctx1, 0, sizeof(ctx1));
(void)to64(0, 4);
2002-06-27 22:31:32 +00:00
2004-01-07 11:10:17 +00:00
return (passwd);
2002-06-27 22:31:32 +00:00
}
#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */