PageRenderTime 26ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/system/lib/libc/musl/src/crypt/crypt_md5.c

http://github.com/kripken/emscripten
C | 285 lines | 213 code | 30 blank | 42 comment | 31 complexity | 3b101b5a9cb98ca3e327be2b4b6c7639 MD5 | raw file
Possible License(s): BSD-3-Clause, 0BSD, GPL-2.0, LGPL-2.0, LGPL-3.0, BSD-2-Clause, Apache-2.0, GPL-3.0, MPL-2.0-no-copyleft-exception
  1. /*
  2. * md5 crypt implementation
  3. *
  4. * original md5 crypt design is from Poul-Henning Kamp
  5. * this implementation was created based on the code in freebsd
  6. * at least 32bit int is assumed, key is limited and $1$ prefix is mandatory,
  7. * on error "*" is returned
  8. */
  9. #include <string.h>
  10. #include <stdint.h>
  11. /* public domain md5 implementation based on rfc1321 and libtomcrypt */
  12. struct md5 {
  13. uint64_t len; /* processed message length */
  14. uint32_t h[4]; /* hash state */
  15. uint8_t buf[64]; /* message block buffer */
  16. };
  17. static uint32_t rol(uint32_t n, int k) { return (n << k) | (n >> (32-k)); }
  18. #define F(x,y,z) (z ^ (x & (y ^ z)))
  19. #define G(x,y,z) (y ^ (z & (y ^ x)))
  20. #define H(x,y,z) (x ^ y ^ z)
  21. #define I(x,y,z) (y ^ (x | ~z))
  22. #define FF(a,b,c,d,w,s,t) a += F(b,c,d) + w + t; a = rol(a,s) + b
  23. #define GG(a,b,c,d,w,s,t) a += G(b,c,d) + w + t; a = rol(a,s) + b
  24. #define HH(a,b,c,d,w,s,t) a += H(b,c,d) + w + t; a = rol(a,s) + b
  25. #define II(a,b,c,d,w,s,t) a += I(b,c,d) + w + t; a = rol(a,s) + b
  26. static const uint32_t tab[64] = {
  27. 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501,
  28. 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821,
  29. 0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8,
  30. 0x21e1cde6, 0xc33707d6, 0xf4d50d87, 0x455a14ed, 0xa9e3e905, 0xfcefa3f8, 0x676f02d9, 0x8d2a4c8a,
  31. 0xfffa3942, 0x8771f681, 0x6d9d6122, 0xfde5380c, 0xa4beea44, 0x4bdecfa9, 0xf6bb4b60, 0xbebfbc70,
  32. 0x289b7ec6, 0xeaa127fa, 0xd4ef3085, 0x04881d05, 0xd9d4d039, 0xe6db99e5, 0x1fa27cf8, 0xc4ac5665,
  33. 0xf4292244, 0x432aff97, 0xab9423a7, 0xfc93a039, 0x655b59c3, 0x8f0ccc92, 0xffeff47d, 0x85845dd1,
  34. 0x6fa87e4f, 0xfe2ce6e0, 0xa3014314, 0x4e0811a1, 0xf7537e82, 0xbd3af235, 0x2ad7d2bb, 0xeb86d391
  35. };
  36. static void processblock(struct md5 *s, const uint8_t *buf)
  37. {
  38. uint32_t i, W[16], a, b, c, d;
  39. for (i = 0; i < 16; i++) {
  40. W[i] = buf[4*i];
  41. W[i] |= (uint32_t)buf[4*i+1]<<8;
  42. W[i] |= (uint32_t)buf[4*i+2]<<16;
  43. W[i] |= (uint32_t)buf[4*i+3]<<24;
  44. }
  45. a = s->h[0];
  46. b = s->h[1];
  47. c = s->h[2];
  48. d = s->h[3];
  49. i = 0;
  50. while (i < 16) {
  51. FF(a,b,c,d, W[i], 7, tab[i]); i++;
  52. FF(d,a,b,c, W[i], 12, tab[i]); i++;
  53. FF(c,d,a,b, W[i], 17, tab[i]); i++;
  54. FF(b,c,d,a, W[i], 22, tab[i]); i++;
  55. }
  56. while (i < 32) {
  57. GG(a,b,c,d, W[(5*i+1)%16], 5, tab[i]); i++;
  58. GG(d,a,b,c, W[(5*i+1)%16], 9, tab[i]); i++;
  59. GG(c,d,a,b, W[(5*i+1)%16], 14, tab[i]); i++;
  60. GG(b,c,d,a, W[(5*i+1)%16], 20, tab[i]); i++;
  61. }
  62. while (i < 48) {
  63. HH(a,b,c,d, W[(3*i+5)%16], 4, tab[i]); i++;
  64. HH(d,a,b,c, W[(3*i+5)%16], 11, tab[i]); i++;
  65. HH(c,d,a,b, W[(3*i+5)%16], 16, tab[i]); i++;
  66. HH(b,c,d,a, W[(3*i+5)%16], 23, tab[i]); i++;
  67. }
  68. while (i < 64) {
  69. II(a,b,c,d, W[7*i%16], 6, tab[i]); i++;
  70. II(d,a,b,c, W[7*i%16], 10, tab[i]); i++;
  71. II(c,d,a,b, W[7*i%16], 15, tab[i]); i++;
  72. II(b,c,d,a, W[7*i%16], 21, tab[i]); i++;
  73. }
  74. s->h[0] += a;
  75. s->h[1] += b;
  76. s->h[2] += c;
  77. s->h[3] += d;
  78. }
  79. static void pad(struct md5 *s)
  80. {
  81. unsigned r = s->len % 64;
  82. s->buf[r++] = 0x80;
  83. if (r > 56) {
  84. memset(s->buf + r, 0, 64 - r);
  85. r = 0;
  86. processblock(s, s->buf);
  87. }
  88. memset(s->buf + r, 0, 56 - r);
  89. s->len *= 8;
  90. s->buf[56] = s->len;
  91. s->buf[57] = s->len >> 8;
  92. s->buf[58] = s->len >> 16;
  93. s->buf[59] = s->len >> 24;
  94. s->buf[60] = s->len >> 32;
  95. s->buf[61] = s->len >> 40;
  96. s->buf[62] = s->len >> 48;
  97. s->buf[63] = s->len >> 56;
  98. processblock(s, s->buf);
  99. }
  100. static void md5_init(struct md5 *s)
  101. {
  102. s->len = 0;
  103. s->h[0] = 0x67452301;
  104. s->h[1] = 0xefcdab89;
  105. s->h[2] = 0x98badcfe;
  106. s->h[3] = 0x10325476;
  107. }
  108. static void md5_sum(struct md5 *s, uint8_t *md)
  109. {
  110. int i;
  111. pad(s);
  112. for (i = 0; i < 4; i++) {
  113. md[4*i] = s->h[i];
  114. md[4*i+1] = s->h[i] >> 8;
  115. md[4*i+2] = s->h[i] >> 16;
  116. md[4*i+3] = s->h[i] >> 24;
  117. }
  118. }
  119. static void md5_update(struct md5 *s, const void *m, unsigned long len)
  120. {
  121. const uint8_t *p = m;
  122. unsigned r = s->len % 64;
  123. s->len += len;
  124. if (r) {
  125. if (len < 64 - r) {
  126. memcpy(s->buf + r, p, len);
  127. return;
  128. }
  129. memcpy(s->buf + r, p, 64 - r);
  130. len -= 64 - r;
  131. p += 64 - r;
  132. processblock(s, s->buf);
  133. }
  134. for (; len >= 64; len -= 64, p += 64)
  135. processblock(s, p);
  136. memcpy(s->buf, p, len);
  137. }
  138. /*-
  139. * Copyright (c) 2003 Poul-Henning Kamp
  140. * All rights reserved.
  141. *
  142. * Redistribution and use in source and binary forms, with or without
  143. * modification, are permitted provided that the following conditions
  144. * are met:
  145. * 1. Redistributions of source code must retain the above copyright
  146. * notice, this list of conditions and the following disclaimer.
  147. * 2. Redistributions in binary form must reproduce the above copyright
  148. * notice, this list of conditions and the following disclaimer in the
  149. * documentation and/or other materials provided with the distribution.
  150. *
  151. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  152. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  153. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  154. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  155. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  156. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  157. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  158. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  159. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  160. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  161. * SUCH DAMAGE.
  162. */
  163. /* key limit is not part of the original design, added for DoS protection */
  164. #define KEY_MAX 30000
  165. #define SALT_MAX 8
  166. static const unsigned char b64[] =
  167. "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  168. static char *to64(char *s, unsigned int u, int n)
  169. {
  170. while (--n >= 0) {
  171. *s++ = b64[u % 64];
  172. u /= 64;
  173. }
  174. return s;
  175. }
  176. static char *md5crypt(const char *key, const char *setting, char *output)
  177. {
  178. struct md5 ctx;
  179. unsigned char md[16];
  180. unsigned int i, klen, slen;
  181. const char *salt;
  182. char *p;
  183. /* reject large keys */
  184. klen = strnlen(key, KEY_MAX+1);
  185. if (klen > KEY_MAX)
  186. return 0;
  187. /* setting: $1$salt$ (closing $ is optional) */
  188. if (strncmp(setting, "$1$", 3) != 0)
  189. return 0;
  190. salt = setting + 3;
  191. for (i = 0; i < SALT_MAX && salt[i] && salt[i] != '$'; i++);
  192. slen = i;
  193. /* md5(key salt key) */
  194. md5_init(&ctx);
  195. md5_update(&ctx, key, klen);
  196. md5_update(&ctx, salt, slen);
  197. md5_update(&ctx, key, klen);
  198. md5_sum(&ctx, md);
  199. /* md5(key $1$ salt repeated-md weird-key[0]-0) */
  200. md5_init(&ctx);
  201. md5_update(&ctx, key, klen);
  202. md5_update(&ctx, setting, 3 + slen);
  203. for (i = klen; i > sizeof md; i -= sizeof md)
  204. md5_update(&ctx, md, sizeof md);
  205. md5_update(&ctx, md, i);
  206. md[0] = 0;
  207. for (i = klen; i; i >>= 1)
  208. if (i & 1)
  209. md5_update(&ctx, md, 1);
  210. else
  211. md5_update(&ctx, key, 1);
  212. md5_sum(&ctx, md);
  213. /* md = f(md, key, salt) iteration */
  214. for (i = 0; i < 1000; i++) {
  215. md5_init(&ctx);
  216. if (i % 2)
  217. md5_update(&ctx, key, klen);
  218. else
  219. md5_update(&ctx, md, sizeof md);
  220. if (i % 3)
  221. md5_update(&ctx, salt, slen);
  222. if (i % 7)
  223. md5_update(&ctx, key, klen);
  224. if (i % 2)
  225. md5_update(&ctx, md, sizeof md);
  226. else
  227. md5_update(&ctx, key, klen);
  228. md5_sum(&ctx, md);
  229. }
  230. /* output is $1$salt$hash */
  231. memcpy(output, setting, 3 + slen);
  232. p = output + 3 + slen;
  233. *p++ = '$';
  234. static const unsigned char perm[][3] = {
  235. 0,6,12,1,7,13,2,8,14,3,9,15,4,10,5 };
  236. for (i=0; i<5; i++) p = to64(p,
  237. (md[perm[i][0]]<<16)|(md[perm[i][1]]<<8)|md[perm[i][2]], 4);
  238. p = to64(p, md[11], 2);
  239. *p = 0;
  240. return output;
  241. }
  242. char *__crypt_md5(const char *key, const char *setting, char *output)
  243. {
  244. static const char testkey[] = "Xy01@#\x01\x02\x80\x7f\xff\r\n\x81\t !";
  245. static const char testsetting[] = "$1$abcd0123$";
  246. static const char testhash[] = "$1$abcd0123$9Qcg8DyviekV3tDGMZynJ1";
  247. char testbuf[64];
  248. char *p, *q;
  249. p = md5crypt(key, setting, output);
  250. /* self test and stack cleanup */
  251. q = md5crypt(testkey, testsetting, testbuf);
  252. if (!p || q != testbuf || memcmp(testbuf, testhash, sizeof testhash))
  253. return "*";
  254. return p;
  255. }