md4.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*-
  2. Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved.
  3. License to copy and use this software is granted provided that it
  4. is identified as the "RSA Data Security, Inc. MD4 Message-Digest
  5. Algorithm" in all material mentioning or referencing this software
  6. or this function.
  7. License is also granted to make and use derivative works provided
  8. that such works are identified as "derived from the RSA Data
  9. Security, Inc. MD4 Message-Digest Algorithm" in all material
  10. mentioning or referencing the derived work.
  11. RSA Data Security, Inc. makes no representations concerning either
  12. the merchantability of this software or the suitability of this
  13. software for any particular purpose. It is provided "as is"
  14. without express or implied warranty of any kind.
  15. These notices must be retained in any copies of any part of this
  16. documentation and/or software.
  17. */
  18. #include "setup.h"
  19. /* NSS crypto library does not provide the MD4 hash algorithm, so that we have
  20. * a local implementation of it */
  21. #ifdef USE_NSS
  22. #include "curl_md4.h"
  23. typedef unsigned int UINT4;
  24. typedef struct MD4Context {
  25. UINT4 state[4]; /* state (ABCD) */
  26. UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
  27. unsigned char buffer[64]; /* input buffer */
  28. } MD4_CTX;
  29. /* Constants for MD4Transform routine.
  30. */
  31. #define S11 3
  32. #define S12 7
  33. #define S13 11
  34. #define S14 19
  35. #define S21 3
  36. #define S22 5
  37. #define S23 9
  38. #define S24 13
  39. #define S31 3
  40. #define S32 9
  41. #define S33 11
  42. #define S34 15
  43. static void MD4Transform(UINT4 [4], const unsigned char [64]);
  44. static void Encode(unsigned char *, UINT4 *, unsigned int);
  45. static void Decode(UINT4 *, const unsigned char *, unsigned int);
  46. static unsigned char PADDING[64] = {
  47. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  48. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  49. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  50. };
  51. /* F, G and H are basic MD4 functions.
  52. */
  53. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  54. #define G(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z)))
  55. #define H(x, y, z) ((x) ^ (y) ^ (z))
  56. /* ROTATE_LEFT rotates x left n bits.
  57. */
  58. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  59. /* FF, GG and HH are transformations for rounds 1, 2 and 3 */
  60. /* Rotation is separate from addition to prevent recomputation */
  61. #define FF(a, b, c, d, x, s) { \
  62. (a) += F ((b), (c), (d)) + (x); \
  63. (a) = ROTATE_LEFT ((a), (s)); \
  64. }
  65. #define GG(a, b, c, d, x, s) { \
  66. (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
  67. (a) = ROTATE_LEFT ((a), (s)); \
  68. }
  69. #define HH(a, b, c, d, x, s) { \
  70. (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
  71. (a) = ROTATE_LEFT ((a), (s)); \
  72. }
  73. /* MD4 initialization. Begins an MD4 operation, writing a new context.
  74. */
  75. static void MD4Init(MD4_CTX *context)
  76. {
  77. context->count[0] = context->count[1] = 0;
  78. /* Load magic initialization constants.
  79. */
  80. context->state[0] = 0x67452301;
  81. context->state[1] = 0xefcdab89;
  82. context->state[2] = 0x98badcfe;
  83. context->state[3] = 0x10325476;
  84. }
  85. /* MD4 block update operation. Continues an MD4 message-digest
  86. operation, processing another message block, and updating the
  87. context.
  88. */
  89. static void MD4Update(MD4_CTX *context, const unsigned char *input,
  90. unsigned int inputLen)
  91. {
  92. unsigned int i, bufindex, partLen;
  93. /* Compute number of bytes mod 64 */
  94. bufindex = (unsigned int)((context->count[0] >> 3) & 0x3F);
  95. /* Update number of bits */
  96. if((context->count[0] += ((UINT4)inputLen << 3))
  97. < ((UINT4)inputLen << 3))
  98. context->count[1]++;
  99. context->count[1] += ((UINT4)inputLen >> 29);
  100. partLen = 64 - bufindex;
  101. /* Transform as many times as possible.
  102. */
  103. if(inputLen >= partLen) {
  104. memcpy(&context->buffer[bufindex], input, partLen);
  105. MD4Transform (context->state, context->buffer);
  106. for(i = partLen; i + 63 < inputLen; i += 64)
  107. MD4Transform (context->state, &input[i]);
  108. bufindex = 0;
  109. }
  110. else
  111. i = 0;
  112. /* Buffer remaining input */
  113. memcpy(&context->buffer[bufindex], &input[i], inputLen-i);
  114. }
  115. /* MD4 padding. */
  116. static void MD4Pad(MD4_CTX *context)
  117. {
  118. unsigned char bits[8];
  119. unsigned int bufindex, padLen;
  120. /* Save number of bits */
  121. Encode (bits, context->count, 8);
  122. /* Pad out to 56 mod 64.
  123. */
  124. bufindex = (unsigned int)((context->count[0] >> 3) & 0x3f);
  125. padLen = (bufindex < 56) ? (56 - bufindex) : (120 - bufindex);
  126. MD4Update (context, PADDING, padLen);
  127. /* Append length (before padding) */
  128. MD4Update (context, bits, 8);
  129. }
  130. /* MD4 finalization. Ends an MD4 message-digest operation, writing the
  131. the message digest and zeroizing the context.
  132. */
  133. static void MD4Final (unsigned char digest[16], MD4_CTX *context)
  134. {
  135. /* Do padding */
  136. MD4Pad (context);
  137. /* Store state in digest */
  138. Encode (digest, context->state, 16);
  139. /* Zeroize sensitive information.
  140. */
  141. memset(context, 0, sizeof(*context));
  142. }
  143. /* MD4 basic transformation. Transforms state based on block.
  144. */
  145. static void MD4Transform (UINT4 state[4], const unsigned char block[64])
  146. {
  147. UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
  148. Decode (x, block, 64);
  149. /* Round 1 */
  150. FF (a, b, c, d, x[ 0], S11); /* 1 */
  151. FF (d, a, b, c, x[ 1], S12); /* 2 */
  152. FF (c, d, a, b, x[ 2], S13); /* 3 */
  153. FF (b, c, d, a, x[ 3], S14); /* 4 */
  154. FF (a, b, c, d, x[ 4], S11); /* 5 */
  155. FF (d, a, b, c, x[ 5], S12); /* 6 */
  156. FF (c, d, a, b, x[ 6], S13); /* 7 */
  157. FF (b, c, d, a, x[ 7], S14); /* 8 */
  158. FF (a, b, c, d, x[ 8], S11); /* 9 */
  159. FF (d, a, b, c, x[ 9], S12); /* 10 */
  160. FF (c, d, a, b, x[10], S13); /* 11 */
  161. FF (b, c, d, a, x[11], S14); /* 12 */
  162. FF (a, b, c, d, x[12], S11); /* 13 */
  163. FF (d, a, b, c, x[13], S12); /* 14 */
  164. FF (c, d, a, b, x[14], S13); /* 15 */
  165. FF (b, c, d, a, x[15], S14); /* 16 */
  166. /* Round 2 */
  167. GG (a, b, c, d, x[ 0], S21); /* 17 */
  168. GG (d, a, b, c, x[ 4], S22); /* 18 */
  169. GG (c, d, a, b, x[ 8], S23); /* 19 */
  170. GG (b, c, d, a, x[12], S24); /* 20 */
  171. GG (a, b, c, d, x[ 1], S21); /* 21 */
  172. GG (d, a, b, c, x[ 5], S22); /* 22 */
  173. GG (c, d, a, b, x[ 9], S23); /* 23 */
  174. GG (b, c, d, a, x[13], S24); /* 24 */
  175. GG (a, b, c, d, x[ 2], S21); /* 25 */
  176. GG (d, a, b, c, x[ 6], S22); /* 26 */
  177. GG (c, d, a, b, x[10], S23); /* 27 */
  178. GG (b, c, d, a, x[14], S24); /* 28 */
  179. GG (a, b, c, d, x[ 3], S21); /* 29 */
  180. GG (d, a, b, c, x[ 7], S22); /* 30 */
  181. GG (c, d, a, b, x[11], S23); /* 31 */
  182. GG (b, c, d, a, x[15], S24); /* 32 */
  183. /* Round 3 */
  184. HH (a, b, c, d, x[ 0], S31); /* 33 */
  185. HH (d, a, b, c, x[ 8], S32); /* 34 */
  186. HH (c, d, a, b, x[ 4], S33); /* 35 */
  187. HH (b, c, d, a, x[12], S34); /* 36 */
  188. HH (a, b, c, d, x[ 2], S31); /* 37 */
  189. HH (d, a, b, c, x[10], S32); /* 38 */
  190. HH (c, d, a, b, x[ 6], S33); /* 39 */
  191. HH (b, c, d, a, x[14], S34); /* 40 */
  192. HH (a, b, c, d, x[ 1], S31); /* 41 */
  193. HH (d, a, b, c, x[ 9], S32); /* 42 */
  194. HH (c, d, a, b, x[ 5], S33); /* 43 */
  195. HH (b, c, d, a, x[13], S34); /* 44 */
  196. HH (a, b, c, d, x[ 3], S31); /* 45 */
  197. HH (d, a, b, c, x[11], S32); /* 46 */
  198. HH (c, d, a, b, x[ 7], S33); /* 47 */
  199. HH (b, c, d, a, x[15], S34); /* 48 */
  200. state[0] += a;
  201. state[1] += b;
  202. state[2] += c;
  203. state[3] += d;
  204. /* Zeroize sensitive information.
  205. */
  206. memset(x, 0, sizeof(x));
  207. }
  208. /* Encodes input (UINT4) into output (unsigned char). Assumes len is
  209. a multiple of 4.
  210. */
  211. static void Encode(unsigned char *output, UINT4 *input, unsigned int len)
  212. {
  213. unsigned int i, j;
  214. for(i = 0, j = 0; j < len; i++, j += 4) {
  215. output[j] = (unsigned char)(input[i] & 0xff);
  216. output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
  217. output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
  218. output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
  219. }
  220. }
  221. /* Decodes input (unsigned char) into output (UINT4). Assumes len is
  222. a multiple of 4.
  223. */
  224. static void Decode (UINT4 *output, const unsigned char *input,
  225. unsigned int len)
  226. {
  227. unsigned int i, j;
  228. for(i = 0, j = 0; j < len; i++, j += 4)
  229. output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
  230. (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
  231. }
  232. void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len)
  233. {
  234. MD4_CTX ctx;
  235. MD4Init(&ctx);
  236. MD4Update(&ctx, input, (unsigned int)len);
  237. MD4Final(output, &ctx);
  238. }
  239. #endif /* USE_NSS */