test_suite_pkcs1_v15.function 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. /* BEGIN_HEADER */
  2. #include "mbedtls/rsa.h"
  3. #include "mbedtls/md.h"
  4. /* END_HEADER */
  5. /* BEGIN_DEPENDENCIES
  6. * depends_on:MBEDTLS_PKCS1_V15:MBEDTLS_RSA_C:MBEDTLS_SHA1_C
  7. * END_DEPENDENCIES
  8. */
  9. /* BEGIN_CASE */
  10. void pkcs1_rsaes_v15_encrypt( int mod, int radix_N, char * input_N,
  11. int radix_E, char * input_E, int hash,
  12. data_t * message_str, data_t * rnd_buf,
  13. data_t * result_str, int result )
  14. {
  15. unsigned char output[128];
  16. mbedtls_rsa_context ctx;
  17. rnd_buf_info info;
  18. mbedtls_mpi N, E;
  19. info.buf = rnd_buf->x;
  20. info.length = rnd_buf->len;
  21. mbedtls_mpi_init( &N ); mbedtls_mpi_init( &E );
  22. mbedtls_rsa_init( &ctx, MBEDTLS_RSA_PKCS_V15, hash );
  23. memset( output, 0x00, sizeof( output ) );
  24. TEST_ASSERT( mbedtls_mpi_read_string( &N, radix_N, input_N ) == 0 );
  25. TEST_ASSERT( mbedtls_mpi_read_string( &E, radix_E, input_E ) == 0 );
  26. TEST_ASSERT( mbedtls_rsa_import( &ctx, &N, NULL, NULL, NULL, &E ) == 0 );
  27. TEST_ASSERT( mbedtls_rsa_get_len( &ctx ) == (size_t) ( ( mod + 7 ) / 8 ) );
  28. TEST_ASSERT( mbedtls_rsa_check_pubkey( &ctx ) == 0 );
  29. TEST_ASSERT( mbedtls_rsa_pkcs1_encrypt( &ctx, &rnd_buffer_rand, &info, MBEDTLS_RSA_PUBLIC, message_str->len, message_str->x, output ) == result );
  30. if( result == 0 )
  31. {
  32. TEST_ASSERT( mbedtls_test_hexcmp( output, result_str->x,
  33. ctx.len, result_str->len ) == 0 );
  34. }
  35. exit:
  36. mbedtls_mpi_free( &N ); mbedtls_mpi_free( &E );
  37. mbedtls_rsa_free( &ctx );
  38. }
  39. /* END_CASE */
  40. /* BEGIN_CASE */
  41. void pkcs1_rsaes_v15_decrypt( int mod, int radix_P, char * input_P,
  42. int radix_Q, char * input_Q, int radix_N,
  43. char * input_N, int radix_E, char * input_E,
  44. int hash, data_t * result_str,
  45. char * seed, data_t * message_str,
  46. int result )
  47. {
  48. unsigned char output[128];
  49. mbedtls_rsa_context ctx;
  50. size_t output_len;
  51. rnd_pseudo_info rnd_info;
  52. mbedtls_mpi N, P, Q, E;
  53. ((void) seed);
  54. mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P );
  55. mbedtls_mpi_init( &Q ); mbedtls_mpi_init( &E );
  56. mbedtls_rsa_init( &ctx, MBEDTLS_RSA_PKCS_V15, hash );
  57. memset( output, 0x00, sizeof( output ) );
  58. memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
  59. TEST_ASSERT( mbedtls_mpi_read_string( &P, radix_P, input_P ) == 0 );
  60. TEST_ASSERT( mbedtls_mpi_read_string( &Q, radix_Q, input_Q ) == 0 );
  61. TEST_ASSERT( mbedtls_mpi_read_string( &N, radix_N, input_N ) == 0 );
  62. TEST_ASSERT( mbedtls_mpi_read_string( &E, radix_E, input_E ) == 0 );
  63. TEST_ASSERT( mbedtls_rsa_import( &ctx, &N, &P, &Q, NULL, &E ) == 0 );
  64. TEST_ASSERT( mbedtls_rsa_get_len( &ctx ) == (size_t) ( ( mod + 7 ) / 8 ) );
  65. TEST_ASSERT( mbedtls_rsa_complete( &ctx ) == 0 );
  66. TEST_ASSERT( mbedtls_rsa_check_privkey( &ctx ) == 0 );
  67. TEST_ASSERT( mbedtls_rsa_pkcs1_decrypt( &ctx, &rnd_pseudo_rand, &rnd_info, MBEDTLS_RSA_PRIVATE, &output_len, message_str->x, output, 1000 ) == result );
  68. if( result == 0 )
  69. {
  70. TEST_ASSERT( mbedtls_test_hexcmp( output, result_str->x,
  71. output_len,
  72. result_str->len) == 0 );
  73. }
  74. exit:
  75. mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P );
  76. mbedtls_mpi_free( &Q ); mbedtls_mpi_free( &E );
  77. mbedtls_rsa_free( &ctx );
  78. }
  79. /* END_CASE */
  80. /* BEGIN_CASE */
  81. void pkcs1_v15_decode( int mode,
  82. data_t *input,
  83. int expected_plaintext_length_arg,
  84. int output_size_arg,
  85. int expected_result )
  86. {
  87. size_t expected_plaintext_length = expected_plaintext_length_arg;
  88. size_t output_size = output_size_arg;
  89. rnd_pseudo_info rnd_info;
  90. mbedtls_mpi Nmpi, Empi, Pmpi, Qmpi;
  91. mbedtls_rsa_context ctx;
  92. static unsigned char N[128] = {
  93. 0xc4, 0x79, 0x4c, 0x6d, 0xb2, 0xe9, 0xdf, 0xc5,
  94. 0xe5, 0xd7, 0x55, 0x4b, 0xfb, 0x6c, 0x2e, 0xec,
  95. 0x84, 0xd0, 0x88, 0x12, 0xaf, 0xbf, 0xb4, 0xf5,
  96. 0x47, 0x3c, 0x7e, 0x92, 0x4c, 0x58, 0xc8, 0x73,
  97. 0xfe, 0x8f, 0x2b, 0x8f, 0x8e, 0xc8, 0x5c, 0xf5,
  98. 0x05, 0xeb, 0xfb, 0x0d, 0x7b, 0x2a, 0x93, 0xde,
  99. 0x15, 0x0d, 0xc8, 0x13, 0xcf, 0xd2, 0x6f, 0x0d,
  100. 0x9d, 0xad, 0x30, 0xe5, 0x70, 0x20, 0x92, 0x9e,
  101. 0xb3, 0x6b, 0xba, 0x5c, 0x50, 0x0f, 0xc3, 0xb2,
  102. 0x7e, 0x64, 0x07, 0x94, 0x7e, 0xc9, 0x4e, 0xc1,
  103. 0x65, 0x04, 0xaf, 0xb3, 0x9f, 0xde, 0xa8, 0x46,
  104. 0xfa, 0x6c, 0xf3, 0x03, 0xaf, 0x1c, 0x1b, 0xec,
  105. 0x75, 0x44, 0x66, 0x77, 0xc9, 0xde, 0x51, 0x33,
  106. 0x64, 0x27, 0xb0, 0xd4, 0x8d, 0x31, 0x6a, 0x11,
  107. 0x27, 0x3c, 0x99, 0xd4, 0x22, 0xc0, 0x9d, 0x12,
  108. 0x01, 0xc7, 0x4a, 0x73, 0xac, 0xbf, 0xc2, 0xbb
  109. };
  110. static unsigned char E[1] = { 0x03 };
  111. static unsigned char P[64] = {
  112. 0xe5, 0x53, 0x1f, 0x88, 0x51, 0xee, 0x59, 0xf8,
  113. 0xc1, 0xe4, 0xcc, 0x5b, 0xb3, 0x75, 0x8d, 0xc8,
  114. 0xe8, 0x95, 0x2f, 0xd0, 0xef, 0x37, 0xb4, 0xcd,
  115. 0xd3, 0x9e, 0x48, 0x8b, 0x81, 0x58, 0x60, 0xb9,
  116. 0x27, 0x1d, 0xb6, 0x28, 0x92, 0x64, 0xa3, 0xa5,
  117. 0x64, 0xbd, 0xcc, 0x53, 0x68, 0xdd, 0x3e, 0x55,
  118. 0xea, 0x9d, 0x5e, 0xcd, 0x1f, 0x96, 0x87, 0xf1,
  119. 0x29, 0x75, 0x92, 0x70, 0x8f, 0x28, 0xfb, 0x2b
  120. };
  121. static unsigned char Q[64] = {
  122. 0xdb, 0x53, 0xef, 0x74, 0x61, 0xb4, 0x20, 0x3b,
  123. 0x3b, 0x87, 0x76, 0x75, 0x81, 0x56, 0x11, 0x03,
  124. 0x59, 0x31, 0xe3, 0x38, 0x4b, 0x8c, 0x7a, 0x9c,
  125. 0x05, 0xd6, 0x7f, 0x1e, 0x5e, 0x60, 0xf0, 0x4e,
  126. 0x0b, 0xdc, 0x34, 0x54, 0x1c, 0x2e, 0x90, 0x83,
  127. 0x14, 0xef, 0xc0, 0x96, 0x5c, 0x30, 0x10, 0xcc,
  128. 0xc1, 0xba, 0xa0, 0x54, 0x3f, 0x96, 0x24, 0xca,
  129. 0xa3, 0xfb, 0x55, 0xbc, 0x71, 0x29, 0x4e, 0xb1
  130. };
  131. unsigned char original[128];
  132. unsigned char intermediate[128];
  133. static unsigned char default_content[128] = {
  134. /* A randomly generated pattern. */
  135. 0x4c, 0x27, 0x54, 0xa0, 0xce, 0x0d, 0x09, 0x4a,
  136. 0x1c, 0x38, 0x8e, 0x2d, 0xa3, 0xc4, 0xe0, 0x19,
  137. 0x4c, 0x99, 0xb2, 0xbf, 0xe6, 0x65, 0x7e, 0x58,
  138. 0xd7, 0xb6, 0x8a, 0x05, 0x2f, 0xa5, 0xec, 0xa4,
  139. 0x35, 0xad, 0x10, 0x36, 0xff, 0x0d, 0x08, 0x50,
  140. 0x74, 0x47, 0xc9, 0x9c, 0x4a, 0xe7, 0xfd, 0xfa,
  141. 0x83, 0x5f, 0x14, 0x5a, 0x1e, 0xe7, 0x35, 0x08,
  142. 0xad, 0xf7, 0x0d, 0x86, 0xdf, 0xb8, 0xd4, 0xcf,
  143. 0x32, 0xb9, 0x5c, 0xbe, 0xa3, 0xd2, 0x89, 0x70,
  144. 0x7b, 0xc6, 0x48, 0x7e, 0x58, 0x4d, 0xf3, 0xef,
  145. 0x34, 0xb7, 0x57, 0x54, 0x79, 0xc5, 0x8e, 0x0a,
  146. 0xa3, 0xbf, 0x6d, 0x42, 0x83, 0x25, 0x13, 0xa2,
  147. 0x95, 0xc0, 0x0d, 0x32, 0xec, 0x77, 0x91, 0x2b,
  148. 0x68, 0xb6, 0x8c, 0x79, 0x15, 0xfb, 0x94, 0xde,
  149. 0xb9, 0x2b, 0x94, 0xb3, 0x28, 0x23, 0x86, 0x3d,
  150. 0x37, 0x00, 0xe6, 0xf1, 0x1f, 0x4e, 0xd4, 0x42
  151. };
  152. unsigned char final[128];
  153. size_t output_length = 0x7EA0;
  154. memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
  155. mbedtls_mpi_init( &Nmpi ); mbedtls_mpi_init( &Empi );
  156. mbedtls_mpi_init( &Pmpi ); mbedtls_mpi_init( &Qmpi );
  157. mbedtls_rsa_init( &ctx, MBEDTLS_RSA_PKCS_V15, 0 );
  158. TEST_ASSERT( mbedtls_mpi_read_binary( &Nmpi, N, sizeof( N ) ) == 0 );
  159. TEST_ASSERT( mbedtls_mpi_read_binary( &Empi, E, sizeof( E ) ) == 0 );
  160. TEST_ASSERT( mbedtls_mpi_read_binary( &Pmpi, P, sizeof( P ) ) == 0 );
  161. TEST_ASSERT( mbedtls_mpi_read_binary( &Qmpi, Q, sizeof( Q ) ) == 0 );
  162. TEST_ASSERT( mbedtls_rsa_import( &ctx, &Nmpi, &Pmpi, &Qmpi,
  163. NULL, &Empi ) == 0 );
  164. TEST_ASSERT( mbedtls_rsa_complete( &ctx ) == 0 );
  165. TEST_ASSERT( input->len <= sizeof( N ) );
  166. memcpy( original, input->x, input->len );
  167. memset( original + input->len, 'd', sizeof( original ) - input->len );
  168. if( mode == MBEDTLS_RSA_PRIVATE )
  169. TEST_ASSERT( mbedtls_rsa_public( &ctx, original, intermediate ) == 0 );
  170. else
  171. TEST_ASSERT( mbedtls_rsa_private( &ctx, &rnd_pseudo_rand, &rnd_info,
  172. original, intermediate ) == 0 );
  173. memcpy( final, default_content, sizeof( final ) );
  174. TEST_ASSERT( mbedtls_rsa_pkcs1_decrypt( &ctx,
  175. &rnd_pseudo_rand, &rnd_info,
  176. mode,
  177. &output_length,
  178. intermediate,
  179. final,
  180. output_size ) == expected_result );
  181. if( expected_result == 0 )
  182. {
  183. TEST_ASSERT( output_length == expected_plaintext_length );
  184. TEST_ASSERT( memcmp( original + sizeof( N ) - output_length,
  185. final,
  186. output_length ) == 0 );
  187. }
  188. else if( expected_result == MBEDTLS_ERR_RSA_INVALID_PADDING ||
  189. expected_result == MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE )
  190. {
  191. size_t max_payload_length =
  192. output_size > sizeof( N ) - 11 ? sizeof( N ) - 11 : output_size;
  193. size_t i;
  194. size_t count = 0;
  195. #if !defined(MBEDTLS_RSA_ALT)
  196. /* Check that the output in invalid cases is what the default
  197. * implementation currently does. Alternative implementations
  198. * may produce different output, so we only perform these precise
  199. * checks when using the default implementation. */
  200. TEST_ASSERT( output_length == max_payload_length );
  201. for( i = 0; i < max_payload_length; i++ )
  202. TEST_ASSERT( final[i] == 0 );
  203. #endif
  204. /* Even in alternative implementations, the outputs must have
  205. * changed, otherwise it indicates at least a timing vulnerability
  206. * because no write to the outputs is performed in the bad case. */
  207. TEST_ASSERT( output_length != 0x7EA0 );
  208. for( i = 0; i < max_payload_length; i++ )
  209. count += ( final[i] == default_content[i] );
  210. /* If more than 16 bytes are unchanged in final, that's evidence
  211. * that final wasn't overwritten. */
  212. TEST_ASSERT( count < 16 );
  213. }
  214. exit:
  215. mbedtls_mpi_free( &Nmpi ); mbedtls_mpi_free( &Empi );
  216. mbedtls_mpi_free( &Pmpi ); mbedtls_mpi_free( &Qmpi );
  217. mbedtls_rsa_free( &ctx );
  218. }
  219. /* END_CASE */
  220. /* BEGIN_CASE */
  221. void pkcs1_rsassa_v15_sign( int mod, int radix_P, char * input_P, int radix_Q,
  222. char * input_Q, int radix_N, char * input_N,
  223. int radix_E, char * input_E, int digest, int hash,
  224. data_t * message_str, data_t * rnd_buf,
  225. data_t * result_str, int result )
  226. {
  227. unsigned char hash_result[MBEDTLS_MD_MAX_SIZE];
  228. unsigned char output[128];
  229. mbedtls_rsa_context ctx;
  230. mbedtls_mpi N, P, Q, E;
  231. rnd_buf_info info;
  232. info.buf = rnd_buf->x;
  233. info.length = rnd_buf->len;
  234. mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P );
  235. mbedtls_mpi_init( &Q ); mbedtls_mpi_init( &E );
  236. mbedtls_rsa_init( &ctx, MBEDTLS_RSA_PKCS_V15, hash );
  237. memset( hash_result, 0x00, sizeof( hash_result ) );
  238. memset( output, 0x00, sizeof( output ) );
  239. TEST_ASSERT( mbedtls_mpi_read_string( &P, radix_P, input_P ) == 0 );
  240. TEST_ASSERT( mbedtls_mpi_read_string( &Q, radix_Q, input_Q ) == 0 );
  241. TEST_ASSERT( mbedtls_mpi_read_string( &N, radix_N, input_N ) == 0 );
  242. TEST_ASSERT( mbedtls_mpi_read_string( &E, radix_E, input_E ) == 0 );
  243. TEST_ASSERT( mbedtls_rsa_import( &ctx, &N, &P, &Q, NULL, &E ) == 0 );
  244. TEST_ASSERT( mbedtls_rsa_get_len( &ctx ) == (size_t) ( ( mod + 7 ) / 8 ) );
  245. TEST_ASSERT( mbedtls_rsa_complete( &ctx ) == 0 );
  246. TEST_ASSERT( mbedtls_rsa_check_privkey( &ctx ) == 0 );
  247. if( mbedtls_md_info_from_type( digest ) != NULL )
  248. TEST_ASSERT( mbedtls_md( mbedtls_md_info_from_type( digest ), message_str->x, message_str->len, hash_result ) == 0 );
  249. TEST_ASSERT( mbedtls_rsa_pkcs1_sign( &ctx, &rnd_buffer_rand, &info, MBEDTLS_RSA_PRIVATE, digest, 0, hash_result, output ) == result );
  250. if( result == 0 )
  251. {
  252. TEST_ASSERT( mbedtls_test_hexcmp( output, result_str->x,
  253. ctx.len, result_str->len ) == 0 );
  254. }
  255. exit:
  256. mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P );
  257. mbedtls_mpi_free( &Q ); mbedtls_mpi_free( &E );
  258. mbedtls_rsa_free( &ctx );
  259. }
  260. /* END_CASE */
  261. /* BEGIN_CASE */
  262. void pkcs1_rsassa_v15_verify( int mod, int radix_N, char * input_N,
  263. int radix_E, char * input_E, int digest,
  264. int hash, data_t * message_str, char * salt,
  265. data_t * result_str, int result )
  266. {
  267. unsigned char hash_result[MBEDTLS_MD_MAX_SIZE];
  268. mbedtls_rsa_context ctx;
  269. mbedtls_mpi N, E;
  270. ((void) salt);
  271. mbedtls_mpi_init( &N ); mbedtls_mpi_init( &E );
  272. mbedtls_rsa_init( &ctx, MBEDTLS_RSA_PKCS_V15, hash );
  273. memset( hash_result, 0x00, sizeof( hash_result ) );
  274. TEST_ASSERT( mbedtls_mpi_read_string( &N, radix_N, input_N ) == 0 );
  275. TEST_ASSERT( mbedtls_mpi_read_string( &E, radix_E, input_E ) == 0 );
  276. TEST_ASSERT( mbedtls_rsa_import( &ctx, &N, NULL, NULL, NULL, &E ) == 0 );
  277. TEST_ASSERT( mbedtls_rsa_get_len( &ctx ) == (size_t) ( ( mod + 7 ) / 8 ) );
  278. TEST_ASSERT( mbedtls_rsa_check_pubkey( &ctx ) == 0 );
  279. if( mbedtls_md_info_from_type( digest ) != NULL )
  280. TEST_ASSERT( mbedtls_md( mbedtls_md_info_from_type( digest ), message_str->x, message_str->len, hash_result ) == 0 );
  281. TEST_ASSERT( mbedtls_rsa_pkcs1_verify( &ctx, NULL, NULL, MBEDTLS_RSA_PUBLIC, digest, 0, hash_result, result_str->x ) == result );
  282. exit:
  283. mbedtls_mpi_free( &N ); mbedtls_mpi_free( &E );
  284. mbedtls_rsa_free( &ctx );
  285. }
  286. /* END_CASE */