2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dknet.dk> wrote this file. As long as you retain this
5 * notice you can do whatever you want with this stuff. If we meet some
6 * day, and you think this stuff is worth it, you can buy me a beer in
7 * return. Poul-Henning Kamp
8 * ----------------------------------------------------------------------------
13 #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
14 #include <openssl/md5.h>
16 RCSID("$Id: md5crypt.c,v 1.9 2003/11/21 12:56:47 djm Exp $");
18 /* 0 ... 63 => ascii - 64 */
19 static unsigned char itoa64
[] =
20 "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
22 static char *magic
= "$1$";
25 to64(unsigned long v
, int n
)
33 memset(buf
, '\0', sizeof(buf
));
35 *s
++ = itoa64
[v
&0x3f];
43 is_md5_salt(const char *salt
)
45 return (strncmp(salt
, magic
, strlen(magic
)) == 0);
49 md5_crypt(const char *pw
, const char *salt
)
51 static char passwd
[120], salt_copy
[9], *p
;
52 static const char *sp
, *ep
;
53 unsigned char final
[16];
58 /* Refine the Salt first */
61 /* If it starts with the magic string, then skip that */
62 if(strncmp(sp
, magic
, strlen(magic
)) == 0)
65 /* It stops at the first '$', max 8 chars */
66 for (ep
= sp
; *ep
!= '$'; ep
++) {
67 if (*ep
== '\0' || ep
>= (sp
+ 8))
71 /* get the length of the true salt */
75 memcpy(salt_copy
, sp
, sl
);
80 /* The password first, since that is what is most unknown */
81 MD5_Update(&ctx
, pw
, strlen(pw
));
83 /* Then our magic string */
84 MD5_Update(&ctx
, magic
, strlen(magic
));
86 /* Then the raw salt */
87 MD5_Update(&ctx
, sp
, sl
);
89 /* Then just as many characters of the MD5(pw, salt, pw) */
91 MD5_Update(&ctx1
, pw
, strlen(pw
));
92 MD5_Update(&ctx1
, sp
, sl
);
93 MD5_Update(&ctx1
, pw
, strlen(pw
));
94 MD5_Final(final
, &ctx1
);
96 for(pl
= strlen(pw
); pl
> 0; pl
-= 16)
97 MD5_Update(&ctx
, final
, pl
> 16 ? 16 : pl
);
99 /* Don't leave anything around in vm they could use. */
100 memset(final
, '\0', sizeof final
);
102 /* Then something really weird... */
103 for (j
= 0, i
= strlen(pw
); i
!= 0; i
>>= 1)
105 MD5_Update(&ctx
, final
+ j
, 1);
107 MD5_Update(&ctx
, pw
+ j
, 1);
109 /* Now make the output string */
110 snprintf(passwd
, sizeof(passwd
), "%s%s$", magic
, salt_copy
);
112 MD5_Final(final
, &ctx
);
115 * and now, just to make sure things don't run too fast
116 * On a 60 Mhz Pentium this takes 34 msec, so you would
117 * need 30 seconds to build a 1000 entry dictionary...
119 for(i
= 0; i
< 1000; i
++) {
122 MD5_Update(&ctx1
, pw
, strlen(pw
));
124 MD5_Update(&ctx1
, final
, 16);
127 MD5_Update(&ctx1
, sp
, sl
);
130 MD5_Update(&ctx1
, pw
, strlen(pw
));
133 MD5_Update(&ctx1
, final
, 16);
135 MD5_Update(&ctx1
, pw
, strlen(pw
));
137 MD5_Final(final
, &ctx1
);
140 p
= passwd
+ strlen(passwd
);
142 l
= (final
[ 0]<<16) | (final
[ 6]<<8) | final
[12];
143 strlcat(passwd
, to64(l
, 4), sizeof(passwd
));
144 l
= (final
[ 1]<<16) | (final
[ 7]<<8) | final
[13];
145 strlcat(passwd
, to64(l
, 4), sizeof(passwd
));
146 l
= (final
[ 2]<<16) | (final
[ 8]<<8) | final
[14];
147 strlcat(passwd
, to64(l
, 4), sizeof(passwd
));
148 l
= (final
[ 3]<<16) | (final
[ 9]<<8) | final
[15];
149 strlcat(passwd
, to64(l
, 4), sizeof(passwd
));
150 l
= (final
[ 4]<<16) | (final
[10]<<8) | final
[ 5];
151 strlcat(passwd
, to64(l
, 4), sizeof(passwd
));
153 strlcat(passwd
, to64(l
, 2), sizeof(passwd
));
155 /* Don't leave anything around in vm they could use. */
156 memset(final
, 0, sizeof(final
));
157 memset(salt_copy
, 0, sizeof(salt_copy
));
158 memset(&ctx
, 0, sizeof(ctx
));
159 memset(&ctx1
, 0, sizeof(ctx1
));
165 #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */