]> andersk Git - gssapi-openssh.git/blame - openssh/md5crypt.c
Removed in OpenSSH 5.1p1.
[gssapi-openssh.git] / openssh / md5crypt.c
CommitLineData
3c0ef626 1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
cdd66111 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
0fff78ff 7 * return. Poul-Henning Kamp
3c0ef626 8 * ----------------------------------------------------------------------------
9 */
10
3c0ef626 11#include "includes.h"
12
3c0ef626 13#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
9108f8d9 14#include <sys/types.h>
15
16#include <string.h>
3c0ef626 17
9108f8d9 18#include <openssl/md5.h>
0fff78ff 19
20/* 0 ... 63 => ascii - 64 */
21static unsigned char itoa64[] =
22 "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
3c0ef626 23
0fff78ff 24static char *magic = "$1$";
3c0ef626 25
0fff78ff 26static char *
27to64(unsigned long v, int n)
3c0ef626 28{
0fff78ff 29 static char buf[5];
30 char *s = buf;
31
32 if (n > 4)
33 return (NULL);
34
35 memset(buf, '\0', sizeof(buf));
3c0ef626 36 while (--n >= 0) {
37 *s++ = itoa64[v&0x3f];
38 v >>= 6;
39 }
cdd66111 40
0fff78ff 41 return (buf);
3c0ef626 42}
43
44int
45is_md5_salt(const char *salt)
46{
0fff78ff 47 return (strncmp(salt, magic, strlen(magic)) == 0);
3c0ef626 48}
49
3c0ef626 50char *
51md5_crypt(const char *pw, const char *salt)
52{
0fff78ff 53 static char passwd[120], salt_copy[9], *p;
54 static const char *sp, *ep;
55 unsigned char final[16];
56 int sl, pl, i, j;
57 MD5_CTX ctx, ctx1;
3c0ef626 58 unsigned long l;
59
60 /* Refine the Salt first */
61 sp = salt;
62
63 /* If it starts with the magic string, then skip that */
0fff78ff 64 if(strncmp(sp, magic, strlen(magic)) == 0)
3c0ef626 65 sp += strlen(magic);
66
67 /* It stops at the first '$', max 8 chars */
0fff78ff 68 for (ep = sp; *ep != '$'; ep++) {
69 if (*ep == '\0' || ep >= (sp + 8))
70 return (NULL);
71 }
3c0ef626 72
73 /* get the length of the true salt */
74 sl = ep - sp;
75
0fff78ff 76 /* Stash the salt */
77 memcpy(salt_copy, sp, sl);
78 salt_copy[sl] = '\0';
79
3c0ef626 80 MD5_Init(&ctx);
81
82 /* The password first, since that is what is most unknown */
0fff78ff 83 MD5_Update(&ctx, pw, strlen(pw));
3c0ef626 84
85 /* Then our magic string */
0fff78ff 86 MD5_Update(&ctx, magic, strlen(magic));
3c0ef626 87
88 /* Then the raw salt */
0fff78ff 89 MD5_Update(&ctx, sp, sl);
3c0ef626 90
0fff78ff 91 /* Then just as many characters of the MD5(pw, salt, pw) */
3c0ef626 92 MD5_Init(&ctx1);
0fff78ff 93 MD5_Update(&ctx1, pw, strlen(pw));
94 MD5_Update(&ctx1, sp, sl);
95 MD5_Update(&ctx1, pw, strlen(pw));
96 MD5_Final(final, &ctx1);
97
3c0ef626 98 for(pl = strlen(pw); pl > 0; pl -= 16)
0fff78ff 99 MD5_Update(&ctx, final, pl > 16 ? 16 : pl);
3c0ef626 100
101 /* Don't leave anything around in vm they could use. */
0fff78ff 102 memset(final, '\0', sizeof final);
3c0ef626 103
104 /* Then something really weird... */
0fff78ff 105 for (j = 0, i = strlen(pw); i != 0; i >>= 1)
106 if (i & 1)
107 MD5_Update(&ctx, final + j, 1);
3c0ef626 108 else
0fff78ff 109 MD5_Update(&ctx, pw + j, 1);
3c0ef626 110
111 /* Now make the output string */
0fff78ff 112 snprintf(passwd, sizeof(passwd), "%s%s$", magic, salt_copy);
3c0ef626 113
0fff78ff 114 MD5_Final(final, &ctx);
3c0ef626 115
116 /*
117 * and now, just to make sure things don't run too fast
118 * On a 60 Mhz Pentium this takes 34 msec, so you would
119 * need 30 seconds to build a 1000 entry dictionary...
120 */
0fff78ff 121 for(i = 0; i < 1000; i++) {
3c0ef626 122 MD5_Init(&ctx1);
0fff78ff 123 if (i & 1)
124 MD5_Update(&ctx1, pw, strlen(pw));
3c0ef626 125 else
0fff78ff 126 MD5_Update(&ctx1, final, 16);
3c0ef626 127
0fff78ff 128 if (i % 3)
129 MD5_Update(&ctx1, sp, sl);
3c0ef626 130
0fff78ff 131 if (i % 7)
132 MD5_Update(&ctx1, pw, strlen(pw));
3c0ef626 133
0fff78ff 134 if (i & 1)
135 MD5_Update(&ctx1, final, 16);
3c0ef626 136 else
0fff78ff 137 MD5_Update(&ctx1, pw, strlen(pw));
138
139 MD5_Final(final, &ctx1);
3c0ef626 140 }
141
142 p = passwd + strlen(passwd);
143
0fff78ff 144 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12];
145 strlcat(passwd, to64(l, 4), sizeof(passwd));
146 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13];
147 strlcat(passwd, to64(l, 4), sizeof(passwd));
148 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14];
149 strlcat(passwd, to64(l, 4), sizeof(passwd));
150 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15];
151 strlcat(passwd, to64(l, 4), sizeof(passwd));
152 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5];
153 strlcat(passwd, to64(l, 4), sizeof(passwd));
154 l = final[11] ;
155 strlcat(passwd, to64(l, 2), sizeof(passwd));
3c0ef626 156
157 /* Don't leave anything around in vm they could use. */
0fff78ff 158 memset(final, 0, sizeof(final));
159 memset(salt_copy, 0, sizeof(salt_copy));
160 memset(&ctx, 0, sizeof(ctx));
161 memset(&ctx1, 0, sizeof(ctx1));
162 (void)to64(0, 4);
3c0ef626 163
0fff78ff 164 return (passwd);
3c0ef626 165}
166
167#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
This page took 0.118941 seconds and 5 git commands to generate.