ripemd160.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. /*
  2. * RIPE MD-160 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 RIPEMD-160 algorithm was designed by RIPE in 1996
  23. * http://homes.esat.kuleuven.be/~bosselae/mbedtls_ripemd160.html
  24. * http://ehash.iaik.tugraz.at/wiki/RIPEMD-160
  25. */
  26. #if !defined(MBEDTLS_CONFIG_FILE)
  27. #include "mbedtls/config.h"
  28. #else
  29. #include MBEDTLS_CONFIG_FILE
  30. #endif
  31. #if defined(MBEDTLS_RIPEMD160_C)
  32. #include "mbedtls/ripemd160.h"
  33. #include <string.h>
  34. #if defined(MBEDTLS_SELF_TEST)
  35. #if defined(MBEDTLS_PLATFORM_C)
  36. #include "mbedtls/platform.h"
  37. #else
  38. #ifdef PRINTF_STDLIB
  39. #include <stdio.h>
  40. #endif
  41. #ifdef PRINTF_CUSTOM
  42. #include "tinystdio.h"
  43. #endif
  44. #define mbedtls_printf printf
  45. #endif /* MBEDTLS_PLATFORM_C */
  46. #endif /* MBEDTLS_SELF_TEST */
  47. /*
  48. * 32-bit integer manipulation macros (little endian)
  49. */
  50. #ifndef GET_UINT32_LE
  51. #define GET_UINT32_LE(n,b,i) \
  52. { \
  53. (n) = ( (uint32_t) (b)[(i) ] ) \
  54. | ( (uint32_t) (b)[(i) + 1] << 8 ) \
  55. | ( (uint32_t) (b)[(i) + 2] << 16 ) \
  56. | ( (uint32_t) (b)[(i) + 3] << 24 ); \
  57. }
  58. #endif
  59. #ifndef PUT_UINT32_LE
  60. #define PUT_UINT32_LE(n,b,i) \
  61. { \
  62. (b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
  63. (b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
  64. (b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
  65. (b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
  66. }
  67. #endif
  68. /* Implementation that should never be optimized out by the compiler */
  69. static void mbedtls_zeroize( void *v, size_t n ) {
  70. volatile unsigned char *p = v; while( n-- ) *p++ = 0;
  71. }
  72. void mbedtls_ripemd160_init( mbedtls_ripemd160_context *ctx )
  73. {
  74. memset( ctx, 0, sizeof( mbedtls_ripemd160_context ) );
  75. }
  76. void mbedtls_ripemd160_free( mbedtls_ripemd160_context *ctx )
  77. {
  78. if( ctx == NULL )
  79. return;
  80. mbedtls_zeroize( ctx, sizeof( mbedtls_ripemd160_context ) );
  81. }
  82. void mbedtls_ripemd160_clone( mbedtls_ripemd160_context *dst,
  83. const mbedtls_ripemd160_context *src )
  84. {
  85. *dst = *src;
  86. }
  87. /*
  88. * RIPEMD-160 context setup
  89. */
  90. void mbedtls_ripemd160_starts( mbedtls_ripemd160_context *ctx )
  91. {
  92. ctx->total[0] = 0;
  93. ctx->total[1] = 0;
  94. ctx->state[0] = 0x67452301;
  95. ctx->state[1] = 0xEFCDAB89;
  96. ctx->state[2] = 0x98BADCFE;
  97. ctx->state[3] = 0x10325476;
  98. ctx->state[4] = 0xC3D2E1F0;
  99. }
  100. #if !defined(MBEDTLS_RIPEMD160_PROCESS_ALT)
  101. /*
  102. * Process one block
  103. */
  104. void mbedtls_ripemd160_process( mbedtls_ripemd160_context *ctx, const unsigned char data[64] )
  105. {
  106. uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16];
  107. GET_UINT32_LE( X[ 0], data, 0 );
  108. GET_UINT32_LE( X[ 1], data, 4 );
  109. GET_UINT32_LE( X[ 2], data, 8 );
  110. GET_UINT32_LE( X[ 3], data, 12 );
  111. GET_UINT32_LE( X[ 4], data, 16 );
  112. GET_UINT32_LE( X[ 5], data, 20 );
  113. GET_UINT32_LE( X[ 6], data, 24 );
  114. GET_UINT32_LE( X[ 7], data, 28 );
  115. GET_UINT32_LE( X[ 8], data, 32 );
  116. GET_UINT32_LE( X[ 9], data, 36 );
  117. GET_UINT32_LE( X[10], data, 40 );
  118. GET_UINT32_LE( X[11], data, 44 );
  119. GET_UINT32_LE( X[12], data, 48 );
  120. GET_UINT32_LE( X[13], data, 52 );
  121. GET_UINT32_LE( X[14], data, 56 );
  122. GET_UINT32_LE( X[15], data, 60 );
  123. A = Ap = ctx->state[0];
  124. B = Bp = ctx->state[1];
  125. C = Cp = ctx->state[2];
  126. D = Dp = ctx->state[3];
  127. E = Ep = ctx->state[4];
  128. #define F1( x, y, z ) ( x ^ y ^ z )
  129. #define F2( x, y, z ) ( ( x & y ) | ( ~x & z ) )
  130. #define F3( x, y, z ) ( ( x | ~y ) ^ z )
  131. #define F4( x, y, z ) ( ( x & z ) | ( y & ~z ) )
  132. #define F5( x, y, z ) ( x ^ ( y | ~z ) )
  133. #define S( x, n ) ( ( x << n ) | ( x >> (32 - n) ) )
  134. #define P( a, b, c, d, e, r, s, f, k ) \
  135. a += f( b, c, d ) + X[r] + k; \
  136. a = S( a, s ) + e; \
  137. c = S( c, 10 );
  138. #define P2( a, b, c, d, e, r, s, rp, sp ) \
  139. P( a, b, c, d, e, r, s, F, K ); \
  140. P( a ## p, b ## p, c ## p, d ## p, e ## p, rp, sp, Fp, Kp );
  141. #define F F1
  142. #define K 0x00000000
  143. #define Fp F5
  144. #define Kp 0x50A28BE6
  145. P2( A, B, C, D, E, 0, 11, 5, 8 );
  146. P2( E, A, B, C, D, 1, 14, 14, 9 );
  147. P2( D, E, A, B, C, 2, 15, 7, 9 );
  148. P2( C, D, E, A, B, 3, 12, 0, 11 );
  149. P2( B, C, D, E, A, 4, 5, 9, 13 );
  150. P2( A, B, C, D, E, 5, 8, 2, 15 );
  151. P2( E, A, B, C, D, 6, 7, 11, 15 );
  152. P2( D, E, A, B, C, 7, 9, 4, 5 );
  153. P2( C, D, E, A, B, 8, 11, 13, 7 );
  154. P2( B, C, D, E, A, 9, 13, 6, 7 );
  155. P2( A, B, C, D, E, 10, 14, 15, 8 );
  156. P2( E, A, B, C, D, 11, 15, 8, 11 );
  157. P2( D, E, A, B, C, 12, 6, 1, 14 );
  158. P2( C, D, E, A, B, 13, 7, 10, 14 );
  159. P2( B, C, D, E, A, 14, 9, 3, 12 );
  160. P2( A, B, C, D, E, 15, 8, 12, 6 );
  161. #undef F
  162. #undef K
  163. #undef Fp
  164. #undef Kp
  165. #define F F2
  166. #define K 0x5A827999
  167. #define Fp F4
  168. #define Kp 0x5C4DD124
  169. P2( E, A, B, C, D, 7, 7, 6, 9 );
  170. P2( D, E, A, B, C, 4, 6, 11, 13 );
  171. P2( C, D, E, A, B, 13, 8, 3, 15 );
  172. P2( B, C, D, E, A, 1, 13, 7, 7 );
  173. P2( A, B, C, D, E, 10, 11, 0, 12 );
  174. P2( E, A, B, C, D, 6, 9, 13, 8 );
  175. P2( D, E, A, B, C, 15, 7, 5, 9 );
  176. P2( C, D, E, A, B, 3, 15, 10, 11 );
  177. P2( B, C, D, E, A, 12, 7, 14, 7 );
  178. P2( A, B, C, D, E, 0, 12, 15, 7 );
  179. P2( E, A, B, C, D, 9, 15, 8, 12 );
  180. P2( D, E, A, B, C, 5, 9, 12, 7 );
  181. P2( C, D, E, A, B, 2, 11, 4, 6 );
  182. P2( B, C, D, E, A, 14, 7, 9, 15 );
  183. P2( A, B, C, D, E, 11, 13, 1, 13 );
  184. P2( E, A, B, C, D, 8, 12, 2, 11 );
  185. #undef F
  186. #undef K
  187. #undef Fp
  188. #undef Kp
  189. #define F F3
  190. #define K 0x6ED9EBA1
  191. #define Fp F3
  192. #define Kp 0x6D703EF3
  193. P2( D, E, A, B, C, 3, 11, 15, 9 );
  194. P2( C, D, E, A, B, 10, 13, 5, 7 );
  195. P2( B, C, D, E, A, 14, 6, 1, 15 );
  196. P2( A, B, C, D, E, 4, 7, 3, 11 );
  197. P2( E, A, B, C, D, 9, 14, 7, 8 );
  198. P2( D, E, A, B, C, 15, 9, 14, 6 );
  199. P2( C, D, E, A, B, 8, 13, 6, 6 );
  200. P2( B, C, D, E, A, 1, 15, 9, 14 );
  201. P2( A, B, C, D, E, 2, 14, 11, 12 );
  202. P2( E, A, B, C, D, 7, 8, 8, 13 );
  203. P2( D, E, A, B, C, 0, 13, 12, 5 );
  204. P2( C, D, E, A, B, 6, 6, 2, 14 );
  205. P2( B, C, D, E, A, 13, 5, 10, 13 );
  206. P2( A, B, C, D, E, 11, 12, 0, 13 );
  207. P2( E, A, B, C, D, 5, 7, 4, 7 );
  208. P2( D, E, A, B, C, 12, 5, 13, 5 );
  209. #undef F
  210. #undef K
  211. #undef Fp
  212. #undef Kp
  213. #define F F4
  214. #define K 0x8F1BBCDC
  215. #define Fp F2
  216. #define Kp 0x7A6D76E9
  217. P2( C, D, E, A, B, 1, 11, 8, 15 );
  218. P2( B, C, D, E, A, 9, 12, 6, 5 );
  219. P2( A, B, C, D, E, 11, 14, 4, 8 );
  220. P2( E, A, B, C, D, 10, 15, 1, 11 );
  221. P2( D, E, A, B, C, 0, 14, 3, 14 );
  222. P2( C, D, E, A, B, 8, 15, 11, 14 );
  223. P2( B, C, D, E, A, 12, 9, 15, 6 );
  224. P2( A, B, C, D, E, 4, 8, 0, 14 );
  225. P2( E, A, B, C, D, 13, 9, 5, 6 );
  226. P2( D, E, A, B, C, 3, 14, 12, 9 );
  227. P2( C, D, E, A, B, 7, 5, 2, 12 );
  228. P2( B, C, D, E, A, 15, 6, 13, 9 );
  229. P2( A, B, C, D, E, 14, 8, 9, 12 );
  230. P2( E, A, B, C, D, 5, 6, 7, 5 );
  231. P2( D, E, A, B, C, 6, 5, 10, 15 );
  232. P2( C, D, E, A, B, 2, 12, 14, 8 );
  233. #undef F
  234. #undef K
  235. #undef Fp
  236. #undef Kp
  237. #define F F5
  238. #define K 0xA953FD4E
  239. #define Fp F1
  240. #define Kp 0x00000000
  241. P2( B, C, D, E, A, 4, 9, 12, 8 );
  242. P2( A, B, C, D, E, 0, 15, 15, 5 );
  243. P2( E, A, B, C, D, 5, 5, 10, 12 );
  244. P2( D, E, A, B, C, 9, 11, 4, 9 );
  245. P2( C, D, E, A, B, 7, 6, 1, 12 );
  246. P2( B, C, D, E, A, 12, 8, 5, 5 );
  247. P2( A, B, C, D, E, 2, 13, 8, 14 );
  248. P2( E, A, B, C, D, 10, 12, 7, 6 );
  249. P2( D, E, A, B, C, 14, 5, 6, 8 );
  250. P2( C, D, E, A, B, 1, 12, 2, 13 );
  251. P2( B, C, D, E, A, 3, 13, 13, 6 );
  252. P2( A, B, C, D, E, 8, 14, 14, 5 );
  253. P2( E, A, B, C, D, 11, 11, 0, 15 );
  254. P2( D, E, A, B, C, 6, 8, 3, 13 );
  255. P2( C, D, E, A, B, 15, 5, 9, 11 );
  256. P2( B, C, D, E, A, 13, 6, 11, 11 );
  257. #undef F
  258. #undef K
  259. #undef Fp
  260. #undef Kp
  261. C = ctx->state[1] + C + Dp;
  262. ctx->state[1] = ctx->state[2] + D + Ep;
  263. ctx->state[2] = ctx->state[3] + E + Ap;
  264. ctx->state[3] = ctx->state[4] + A + Bp;
  265. ctx->state[4] = ctx->state[0] + B + Cp;
  266. ctx->state[0] = C;
  267. }
  268. #endif /* !MBEDTLS_RIPEMD160_PROCESS_ALT */
  269. /*
  270. * RIPEMD-160 process buffer
  271. */
  272. void mbedtls_ripemd160_update( mbedtls_ripemd160_context *ctx,
  273. const unsigned char *input, size_t ilen )
  274. {
  275. size_t fill;
  276. uint32_t left;
  277. if( ilen == 0 )
  278. return;
  279. left = ctx->total[0] & 0x3F;
  280. fill = 64 - left;
  281. ctx->total[0] += (uint32_t) ilen;
  282. ctx->total[0] &= 0xFFFFFFFF;
  283. if( ctx->total[0] < (uint32_t) ilen )
  284. ctx->total[1]++;
  285. if( left && ilen >= fill )
  286. {
  287. memcpy( (void *) (ctx->buffer + left), input, fill );
  288. mbedtls_ripemd160_process( ctx, ctx->buffer );
  289. input += fill;
  290. ilen -= fill;
  291. left = 0;
  292. }
  293. while( ilen >= 64 )
  294. {
  295. mbedtls_ripemd160_process( ctx, input );
  296. input += 64;
  297. ilen -= 64;
  298. }
  299. if( ilen > 0 )
  300. {
  301. memcpy( (void *) (ctx->buffer + left), input, ilen );
  302. }
  303. }
  304. static const unsigned char ripemd160_padding[64] =
  305. {
  306. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  307. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  308. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  309. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  310. };
  311. /*
  312. * RIPEMD-160 final digest
  313. */
  314. void mbedtls_ripemd160_finish( mbedtls_ripemd160_context *ctx, unsigned char output[20] )
  315. {
  316. uint32_t last, padn;
  317. uint32_t high, low;
  318. unsigned char msglen[8];
  319. high = ( ctx->total[0] >> 29 )
  320. | ( ctx->total[1] << 3 );
  321. low = ( ctx->total[0] << 3 );
  322. PUT_UINT32_LE( low, msglen, 0 );
  323. PUT_UINT32_LE( high, msglen, 4 );
  324. last = ctx->total[0] & 0x3F;
  325. padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last );
  326. mbedtls_ripemd160_update( ctx, ripemd160_padding, padn );
  327. mbedtls_ripemd160_update( ctx, msglen, 8 );
  328. PUT_UINT32_LE( ctx->state[0], output, 0 );
  329. PUT_UINT32_LE( ctx->state[1], output, 4 );
  330. PUT_UINT32_LE( ctx->state[2], output, 8 );
  331. PUT_UINT32_LE( ctx->state[3], output, 12 );
  332. PUT_UINT32_LE( ctx->state[4], output, 16 );
  333. }
  334. /*
  335. * output = RIPEMD-160( input buffer )
  336. */
  337. void mbedtls_ripemd160( const unsigned char *input, size_t ilen,
  338. unsigned char output[20] )
  339. {
  340. mbedtls_ripemd160_context ctx;
  341. mbedtls_ripemd160_init( &ctx );
  342. mbedtls_ripemd160_starts( &ctx );
  343. mbedtls_ripemd160_update( &ctx, input, ilen );
  344. mbedtls_ripemd160_finish( &ctx, output );
  345. mbedtls_ripemd160_free( &ctx );
  346. }
  347. #if defined(MBEDTLS_SELF_TEST)
  348. /*
  349. * Test vectors from the RIPEMD-160 paper and
  350. * http://homes.esat.kuleuven.be/~bosselae/mbedtls_ripemd160.html#HMAC
  351. */
  352. #define TESTS 8
  353. #define KEYS 2
  354. static const char *ripemd160_test_input[TESTS] =
  355. {
  356. "",
  357. "a",
  358. "abc",
  359. "message digest",
  360. "abcdefghijklmnopqrstuvwxyz",
  361. "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
  362. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  363. "1234567890123456789012345678901234567890"
  364. "1234567890123456789012345678901234567890",
  365. };
  366. static const unsigned char ripemd160_test_md[TESTS][20] =
  367. {
  368. { 0x9c, 0x11, 0x85, 0xa5, 0xc5, 0xe9, 0xfc, 0x54, 0x61, 0x28,
  369. 0x08, 0x97, 0x7e, 0xe8, 0xf5, 0x48, 0xb2, 0x25, 0x8d, 0x31 },
  370. { 0x0b, 0xdc, 0x9d, 0x2d, 0x25, 0x6b, 0x3e, 0xe9, 0xda, 0xae,
  371. 0x34, 0x7b, 0xe6, 0xf4, 0xdc, 0x83, 0x5a, 0x46, 0x7f, 0xfe },
  372. { 0x8e, 0xb2, 0x08, 0xf7, 0xe0, 0x5d, 0x98, 0x7a, 0x9b, 0x04,
  373. 0x4a, 0x8e, 0x98, 0xc6, 0xb0, 0x87, 0xf1, 0x5a, 0x0b, 0xfc },
  374. { 0x5d, 0x06, 0x89, 0xef, 0x49, 0xd2, 0xfa, 0xe5, 0x72, 0xb8,
  375. 0x81, 0xb1, 0x23, 0xa8, 0x5f, 0xfa, 0x21, 0x59, 0x5f, 0x36 },
  376. { 0xf7, 0x1c, 0x27, 0x10, 0x9c, 0x69, 0x2c, 0x1b, 0x56, 0xbb,
  377. 0xdc, 0xeb, 0x5b, 0x9d, 0x28, 0x65, 0xb3, 0x70, 0x8d, 0xbc },
  378. { 0x12, 0xa0, 0x53, 0x38, 0x4a, 0x9c, 0x0c, 0x88, 0xe4, 0x05,
  379. 0xa0, 0x6c, 0x27, 0xdc, 0xf4, 0x9a, 0xda, 0x62, 0xeb, 0x2b },
  380. { 0xb0, 0xe2, 0x0b, 0x6e, 0x31, 0x16, 0x64, 0x02, 0x86, 0xed,
  381. 0x3a, 0x87, 0xa5, 0x71, 0x30, 0x79, 0xb2, 0x1f, 0x51, 0x89 },
  382. { 0x9b, 0x75, 0x2e, 0x45, 0x57, 0x3d, 0x4b, 0x39, 0xf4, 0xdb,
  383. 0xd3, 0x32, 0x3c, 0xab, 0x82, 0xbf, 0x63, 0x32, 0x6b, 0xfb },
  384. };
  385. /*
  386. * Checkup routine
  387. */
  388. int mbedtls_ripemd160_self_test( int verbose )
  389. {
  390. int i;
  391. unsigned char output[20];
  392. memset( output, 0, sizeof output );
  393. for( i = 0; i < TESTS; i++ )
  394. {
  395. if( verbose != 0 )
  396. mbedtls_printf( " RIPEMD-160 test #%d: ", i + 1 );
  397. mbedtls_ripemd160( (const unsigned char *) ripemd160_test_input[i],
  398. strlen( ripemd160_test_input[i] ),
  399. output );
  400. if( memcmp( output, ripemd160_test_md[i], 20 ) != 0 )
  401. {
  402. if( verbose != 0 )
  403. mbedtls_printf( "failed\n" );
  404. return( 1 );
  405. }
  406. if( verbose != 0 )
  407. mbedtls_printf( "passed\n" );
  408. }
  409. if( verbose != 0 )
  410. mbedtls_printf( "\n" );
  411. return( 0 );
  412. }
  413. #endif /* MBEDTLS_SELF_TEST */
  414. #endif /* MBEDTLS_RIPEMD160_C */