md4.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. /*
  2. * RFC 1186/1320 compliant MD4 implementation
  3. *
  4. * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
  5. * SPDX-License-Identifier: Apache-2.0
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License"); you may
  8. * not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  15. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. * This file is part of mbed TLS (https://tls.mbed.org)
  20. */
  21. /*
  22. * The MD4 algorithm was designed by Ron Rivest in 1990.
  23. *
  24. * http://www.ietf.org/rfc/rfc1186.txt
  25. * http://www.ietf.org/rfc/rfc1320.txt
  26. */
  27. #if !defined(MBEDTLS_CONFIG_FILE)
  28. #include "mbedtls/config.h"
  29. #else
  30. #include MBEDTLS_CONFIG_FILE
  31. #endif
  32. #if defined(MBEDTLS_MD4_C)
  33. #include "mbedtls/md4.h"
  34. #include "mbedtls/platform_util.h"
  35. #include <string.h>
  36. #if defined(MBEDTLS_SELF_TEST)
  37. #if defined(MBEDTLS_PLATFORM_C)
  38. #include "mbedtls/platform.h"
  39. #else
  40. #include <stdio.h>
  41. #define mbedtls_printf printf
  42. #endif /* MBEDTLS_PLATFORM_C */
  43. #endif /* MBEDTLS_SELF_TEST */
  44. #if !defined(MBEDTLS_MD4_ALT)
  45. /*
  46. * 32-bit integer manipulation macros (little endian)
  47. */
  48. #ifndef GET_UINT32_LE
  49. #define GET_UINT32_LE(n,b,i) \
  50. { \
  51. (n) = ( (uint32_t) (b)[(i) ] ) \
  52. | ( (uint32_t) (b)[(i) + 1] << 8 ) \
  53. | ( (uint32_t) (b)[(i) + 2] << 16 ) \
  54. | ( (uint32_t) (b)[(i) + 3] << 24 ); \
  55. }
  56. #endif
  57. #ifndef PUT_UINT32_LE
  58. #define PUT_UINT32_LE(n,b,i) \
  59. { \
  60. (b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
  61. (b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
  62. (b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
  63. (b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
  64. }
  65. #endif
  66. void mbedtls_md4_init( mbedtls_md4_context *ctx )
  67. {
  68. memset( ctx, 0, sizeof( mbedtls_md4_context ) );
  69. }
  70. void mbedtls_md4_free( mbedtls_md4_context *ctx )
  71. {
  72. if( ctx == NULL )
  73. return;
  74. mbedtls_platform_zeroize( ctx, sizeof( mbedtls_md4_context ) );
  75. }
  76. void mbedtls_md4_clone( mbedtls_md4_context *dst,
  77. const mbedtls_md4_context *src )
  78. {
  79. *dst = *src;
  80. }
  81. /*
  82. * MD4 context setup
  83. */
  84. int mbedtls_md4_starts_ret( mbedtls_md4_context *ctx )
  85. {
  86. ctx->total[0] = 0;
  87. ctx->total[1] = 0;
  88. ctx->state[0] = 0x67452301;
  89. ctx->state[1] = 0xEFCDAB89;
  90. ctx->state[2] = 0x98BADCFE;
  91. ctx->state[3] = 0x10325476;
  92. return( 0 );
  93. }
  94. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  95. void mbedtls_md4_starts( mbedtls_md4_context *ctx )
  96. {
  97. mbedtls_md4_starts_ret( ctx );
  98. }
  99. #endif
  100. #if !defined(MBEDTLS_MD4_PROCESS_ALT)
  101. int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
  102. const unsigned char data[64] )
  103. {
  104. uint32_t X[16], A, B, C, D;
  105. GET_UINT32_LE( X[ 0], data, 0 );
  106. GET_UINT32_LE( X[ 1], data, 4 );
  107. GET_UINT32_LE( X[ 2], data, 8 );
  108. GET_UINT32_LE( X[ 3], data, 12 );
  109. GET_UINT32_LE( X[ 4], data, 16 );
  110. GET_UINT32_LE( X[ 5], data, 20 );
  111. GET_UINT32_LE( X[ 6], data, 24 );
  112. GET_UINT32_LE( X[ 7], data, 28 );
  113. GET_UINT32_LE( X[ 8], data, 32 );
  114. GET_UINT32_LE( X[ 9], data, 36 );
  115. GET_UINT32_LE( X[10], data, 40 );
  116. GET_UINT32_LE( X[11], data, 44 );
  117. GET_UINT32_LE( X[12], data, 48 );
  118. GET_UINT32_LE( X[13], data, 52 );
  119. GET_UINT32_LE( X[14], data, 56 );
  120. GET_UINT32_LE( X[15], data, 60 );
  121. #define S(x,n) (((x) << (n)) | (((x) & 0xFFFFFFFF) >> (32 - (n))))
  122. A = ctx->state[0];
  123. B = ctx->state[1];
  124. C = ctx->state[2];
  125. D = ctx->state[3];
  126. #define F(x, y, z) (((x) & (y)) | ((~(x)) & (z)))
  127. #define P(a,b,c,d,x,s) \
  128. do \
  129. { \
  130. (a) += F((b),(c),(d)) + (x); \
  131. (a) = S((a),(s)); \
  132. } while( 0 )
  133. P( A, B, C, D, X[ 0], 3 );
  134. P( D, A, B, C, X[ 1], 7 );
  135. P( C, D, A, B, X[ 2], 11 );
  136. P( B, C, D, A, X[ 3], 19 );
  137. P( A, B, C, D, X[ 4], 3 );
  138. P( D, A, B, C, X[ 5], 7 );
  139. P( C, D, A, B, X[ 6], 11 );
  140. P( B, C, D, A, X[ 7], 19 );
  141. P( A, B, C, D, X[ 8], 3 );
  142. P( D, A, B, C, X[ 9], 7 );
  143. P( C, D, A, B, X[10], 11 );
  144. P( B, C, D, A, X[11], 19 );
  145. P( A, B, C, D, X[12], 3 );
  146. P( D, A, B, C, X[13], 7 );
  147. P( C, D, A, B, X[14], 11 );
  148. P( B, C, D, A, X[15], 19 );
  149. #undef P
  150. #undef F
  151. #define F(x,y,z) (((x) & (y)) | ((x) & (z)) | ((y) & (z)))
  152. #define P(a,b,c,d,x,s) \
  153. do \
  154. { \
  155. (a) += F((b),(c),(d)) + (x) + 0x5A827999; \
  156. (a) = S((a),(s)); \
  157. } while( 0 )
  158. P( A, B, C, D, X[ 0], 3 );
  159. P( D, A, B, C, X[ 4], 5 );
  160. P( C, D, A, B, X[ 8], 9 );
  161. P( B, C, D, A, X[12], 13 );
  162. P( A, B, C, D, X[ 1], 3 );
  163. P( D, A, B, C, X[ 5], 5 );
  164. P( C, D, A, B, X[ 9], 9 );
  165. P( B, C, D, A, X[13], 13 );
  166. P( A, B, C, D, X[ 2], 3 );
  167. P( D, A, B, C, X[ 6], 5 );
  168. P( C, D, A, B, X[10], 9 );
  169. P( B, C, D, A, X[14], 13 );
  170. P( A, B, C, D, X[ 3], 3 );
  171. P( D, A, B, C, X[ 7], 5 );
  172. P( C, D, A, B, X[11], 9 );
  173. P( B, C, D, A, X[15], 13 );
  174. #undef P
  175. #undef F
  176. #define F(x,y,z) ((x) ^ (y) ^ (z))
  177. #define P(a,b,c,d,x,s) \
  178. do \
  179. { \
  180. (a) += F((b),(c),(d)) + (x) + 0x6ED9EBA1; \
  181. (a) = S((a),(s)); \
  182. } while( 0 )
  183. P( A, B, C, D, X[ 0], 3 );
  184. P( D, A, B, C, X[ 8], 9 );
  185. P( C, D, A, B, X[ 4], 11 );
  186. P( B, C, D, A, X[12], 15 );
  187. P( A, B, C, D, X[ 2], 3 );
  188. P( D, A, B, C, X[10], 9 );
  189. P( C, D, A, B, X[ 6], 11 );
  190. P( B, C, D, A, X[14], 15 );
  191. P( A, B, C, D, X[ 1], 3 );
  192. P( D, A, B, C, X[ 9], 9 );
  193. P( C, D, A, B, X[ 5], 11 );
  194. P( B, C, D, A, X[13], 15 );
  195. P( A, B, C, D, X[ 3], 3 );
  196. P( D, A, B, C, X[11], 9 );
  197. P( C, D, A, B, X[ 7], 11 );
  198. P( B, C, D, A, X[15], 15 );
  199. #undef F
  200. #undef P
  201. ctx->state[0] += A;
  202. ctx->state[1] += B;
  203. ctx->state[2] += C;
  204. ctx->state[3] += D;
  205. return( 0 );
  206. }
  207. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  208. void mbedtls_md4_process( mbedtls_md4_context *ctx,
  209. const unsigned char data[64] )
  210. {
  211. mbedtls_internal_md4_process( ctx, data );
  212. }
  213. #endif
  214. #endif /* !MBEDTLS_MD4_PROCESS_ALT */
  215. /*
  216. * MD4 process buffer
  217. */
  218. int mbedtls_md4_update_ret( mbedtls_md4_context *ctx,
  219. const unsigned char *input,
  220. size_t ilen )
  221. {
  222. int ret;
  223. size_t fill;
  224. uint32_t left;
  225. if( ilen == 0 )
  226. return( 0 );
  227. left = ctx->total[0] & 0x3F;
  228. fill = 64 - left;
  229. ctx->total[0] += (uint32_t) ilen;
  230. ctx->total[0] &= 0xFFFFFFFF;
  231. if( ctx->total[0] < (uint32_t) ilen )
  232. ctx->total[1]++;
  233. if( left && ilen >= fill )
  234. {
  235. memcpy( (void *) (ctx->buffer + left),
  236. (void *) input, fill );
  237. if( ( ret = mbedtls_internal_md4_process( ctx, ctx->buffer ) ) != 0 )
  238. return( ret );
  239. input += fill;
  240. ilen -= fill;
  241. left = 0;
  242. }
  243. while( ilen >= 64 )
  244. {
  245. if( ( ret = mbedtls_internal_md4_process( ctx, input ) ) != 0 )
  246. return( ret );
  247. input += 64;
  248. ilen -= 64;
  249. }
  250. if( ilen > 0 )
  251. {
  252. memcpy( (void *) (ctx->buffer + left),
  253. (void *) input, ilen );
  254. }
  255. return( 0 );
  256. }
  257. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  258. void mbedtls_md4_update( mbedtls_md4_context *ctx,
  259. const unsigned char *input,
  260. size_t ilen )
  261. {
  262. mbedtls_md4_update_ret( ctx, input, ilen );
  263. }
  264. #endif
  265. static const unsigned char md4_padding[64] =
  266. {
  267. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  268. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  269. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  270. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  271. };
  272. /*
  273. * MD4 final digest
  274. */
  275. int mbedtls_md4_finish_ret( mbedtls_md4_context *ctx,
  276. unsigned char output[16] )
  277. {
  278. int ret;
  279. uint32_t last, padn;
  280. uint32_t high, low;
  281. unsigned char msglen[8];
  282. high = ( ctx->total[0] >> 29 )
  283. | ( ctx->total[1] << 3 );
  284. low = ( ctx->total[0] << 3 );
  285. PUT_UINT32_LE( low, msglen, 0 );
  286. PUT_UINT32_LE( high, msglen, 4 );
  287. last = ctx->total[0] & 0x3F;
  288. padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last );
  289. ret = mbedtls_md4_update_ret( ctx, (unsigned char *)md4_padding, padn );
  290. if( ret != 0 )
  291. return( ret );
  292. if( ( ret = mbedtls_md4_update_ret( ctx, msglen, 8 ) ) != 0 )
  293. return( ret );
  294. PUT_UINT32_LE( ctx->state[0], output, 0 );
  295. PUT_UINT32_LE( ctx->state[1], output, 4 );
  296. PUT_UINT32_LE( ctx->state[2], output, 8 );
  297. PUT_UINT32_LE( ctx->state[3], output, 12 );
  298. return( 0 );
  299. }
  300. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  301. void mbedtls_md4_finish( mbedtls_md4_context *ctx,
  302. unsigned char output[16] )
  303. {
  304. mbedtls_md4_finish_ret( ctx, output );
  305. }
  306. #endif
  307. #endif /* !MBEDTLS_MD4_ALT */
  308. /*
  309. * output = MD4( input buffer )
  310. */
  311. int mbedtls_md4_ret( const unsigned char *input,
  312. size_t ilen,
  313. unsigned char output[16] )
  314. {
  315. int ret;
  316. mbedtls_md4_context ctx;
  317. mbedtls_md4_init( &ctx );
  318. if( ( ret = mbedtls_md4_starts_ret( &ctx ) ) != 0 )
  319. goto exit;
  320. if( ( ret = mbedtls_md4_update_ret( &ctx, input, ilen ) ) != 0 )
  321. goto exit;
  322. if( ( ret = mbedtls_md4_finish_ret( &ctx, output ) ) != 0 )
  323. goto exit;
  324. exit:
  325. mbedtls_md4_free( &ctx );
  326. return( ret );
  327. }
  328. #if !defined(MBEDTLS_DEPRECATED_REMOVED)
  329. void mbedtls_md4( const unsigned char *input,
  330. size_t ilen,
  331. unsigned char output[16] )
  332. {
  333. mbedtls_md4_ret( input, ilen, output );
  334. }
  335. #endif
  336. #if defined(MBEDTLS_SELF_TEST)
  337. /*
  338. * RFC 1320 test vectors
  339. */
  340. static const unsigned char md4_test_str[7][81] =
  341. {
  342. { "" },
  343. { "a" },
  344. { "abc" },
  345. { "message digest" },
  346. { "abcdefghijklmnopqrstuvwxyz" },
  347. { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" },
  348. { "12345678901234567890123456789012345678901234567890123456789012"
  349. "345678901234567890" }
  350. };
  351. static const size_t md4_test_strlen[7] =
  352. {
  353. 0, 1, 3, 14, 26, 62, 80
  354. };
  355. static const unsigned char md4_test_sum[7][16] =
  356. {
  357. { 0x31, 0xD6, 0xCF, 0xE0, 0xD1, 0x6A, 0xE9, 0x31,
  358. 0xB7, 0x3C, 0x59, 0xD7, 0xE0, 0xC0, 0x89, 0xC0 },
  359. { 0xBD, 0xE5, 0x2C, 0xB3, 0x1D, 0xE3, 0x3E, 0x46,
  360. 0x24, 0x5E, 0x05, 0xFB, 0xDB, 0xD6, 0xFB, 0x24 },
  361. { 0xA4, 0x48, 0x01, 0x7A, 0xAF, 0x21, 0xD8, 0x52,
  362. 0x5F, 0xC1, 0x0A, 0xE8, 0x7A, 0xA6, 0x72, 0x9D },
  363. { 0xD9, 0x13, 0x0A, 0x81, 0x64, 0x54, 0x9F, 0xE8,
  364. 0x18, 0x87, 0x48, 0x06, 0xE1, 0xC7, 0x01, 0x4B },
  365. { 0xD7, 0x9E, 0x1C, 0x30, 0x8A, 0xA5, 0xBB, 0xCD,
  366. 0xEE, 0xA8, 0xED, 0x63, 0xDF, 0x41, 0x2D, 0xA9 },
  367. { 0x04, 0x3F, 0x85, 0x82, 0xF2, 0x41, 0xDB, 0x35,
  368. 0x1C, 0xE6, 0x27, 0xE1, 0x53, 0xE7, 0xF0, 0xE4 },
  369. { 0xE3, 0x3B, 0x4D, 0xDC, 0x9C, 0x38, 0xF2, 0x19,
  370. 0x9C, 0x3E, 0x7B, 0x16, 0x4F, 0xCC, 0x05, 0x36 }
  371. };
  372. /*
  373. * Checkup routine
  374. */
  375. int mbedtls_md4_self_test( int verbose )
  376. {
  377. int i, ret = 0;
  378. unsigned char md4sum[16];
  379. for( i = 0; i < 7; i++ )
  380. {
  381. if( verbose != 0 )
  382. mbedtls_printf( " MD4 test #%d: ", i + 1 );
  383. ret = mbedtls_md4_ret( md4_test_str[i], md4_test_strlen[i], md4sum );
  384. if( ret != 0 )
  385. goto fail;
  386. if( memcmp( md4sum, md4_test_sum[i], 16 ) != 0 )
  387. {
  388. ret = 1;
  389. goto fail;
  390. }
  391. if( verbose != 0 )
  392. mbedtls_printf( "passed\n" );
  393. }
  394. if( verbose != 0 )
  395. mbedtls_printf( "\n" );
  396. return( 0 );
  397. fail:
  398. if( verbose != 0 )
  399. mbedtls_printf( "failed\n" );
  400. return( ret );
  401. }
  402. #endif /* MBEDTLS_SELF_TEST */
  403. #endif /* MBEDTLS_MD4_C */