ripemd160.c 16 KB

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