123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- BEGIN_HEADER
- #include <polarssl/rsa.h>
- #include <polarssl/md2.h>
- #include <polarssl/md4.h>
- #include <polarssl/md5.h>
- #include <polarssl/sha1.h>
- #include <polarssl/sha2.h>
- #include <polarssl/sha4.h>
- #include <polarssl/havege.h>
- END_HEADER
- BEGIN_DEPENDENCIES
- depends_on:POLARSSL_RSA_C:POLARSSL_BIGNUM_C:POLARSSL_GENPRIME
- END_DEPENDENCIES
- BEGIN_CASE
- rsa_pkcs1_sign:message_hex_string:padding_mode:digest:mod:radix_P:input_P:radix_Q:input_Q:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char hash_result[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- mpi P1, Q1, H, G;
- int msg_len;
- mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( hash_result, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.P, {radix_P}, {input_P} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.Q, {radix_Q}, {input_Q} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( mpi_sub_int( &P1, &ctx.P, 1 ) == 0 );
- TEST_ASSERT( mpi_sub_int( &Q1, &ctx.Q, 1 ) == 0 );
- TEST_ASSERT( mpi_mul_mpi( &H, &P1, &Q1 ) == 0 );
- TEST_ASSERT( mpi_gcd( &G, &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.D , &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DP, &ctx.D, &P1 ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DQ, &ctx.D, &Q1 ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.QP, &ctx.Q, &ctx.P ) == 0 );
- TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
- msg_len = unhexify( message_str, {message_hex_string} );
- switch( {digest} )
- {
- #ifdef POLARSSL_MD2_C
- case SIG_RSA_MD2:
- md2( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_MD4_C
- case SIG_RSA_MD4:
- md4( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_MD5_C
- case SIG_RSA_MD5:
- md5( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_SHA1_C
- case SIG_RSA_SHA1:
- sha1( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_SHA2_C
- case SIG_RSA_SHA224:
- sha2( message_str, msg_len, hash_result, 1 );
- break;
- case SIG_RSA_SHA256:
- sha2( message_str, msg_len, hash_result, 0 );
- break;
- #endif
- #ifdef POLARSSL_SHA4_C
- case SIG_RSA_SHA384:
- sha4( message_str, msg_len, hash_result, 1 );
- break;
- case SIG_RSA_SHA512:
- sha4( message_str, msg_len, hash_result, 0 );
- break;
- #endif
- }
- TEST_ASSERT( rsa_pkcs1_sign( &ctx, NULL, NULL, RSA_PRIVATE, {digest}, 0, hash_result, output ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- }
- mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_verify:message_hex_string:padding_mode:digest:mod:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char hash_result[1000];
- unsigned char result_str[1000];
- rsa_context ctx;
- int msg_len;
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( hash_result, 0x00, 1000 );
- memset( result_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
- msg_len = unhexify( message_str, {message_hex_string} );
- unhexify( result_str, {result_hex_str} );
- switch( {digest} )
- {
- #ifdef POLARSSL_MD2_C
- case SIG_RSA_MD2:
- md2( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_MD4_C
- case SIG_RSA_MD4:
- md4( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_MD5_C
- case SIG_RSA_MD5:
- md5( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_SHA1_C
- case SIG_RSA_SHA1:
- sha1( message_str, msg_len, hash_result );
- break;
- #endif
- #ifdef POLARSSL_SHA2_C
- case SIG_RSA_SHA224:
- sha2( message_str, msg_len, hash_result, 1 );
- break;
- case SIG_RSA_SHA256:
- sha2( message_str, msg_len, hash_result, 0 );
- break;
- #endif
- #ifdef POLARSSL_SHA4_C
- case SIG_RSA_SHA384:
- sha4( message_str, msg_len, hash_result, 1 );
- break;
- case SIG_RSA_SHA512:
- sha4( message_str, msg_len, hash_result, 0 );
- break;
- #endif
- }
- TEST_ASSERT( rsa_pkcs1_verify( &ctx, RSA_PUBLIC, {digest}, 0, hash_result, result_str ) == {result} );
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_sign_raw:message_hex_string:hash_result_string:padding_mode:mod:radix_P:input_P:radix_Q:input_Q:radix_N:input_N:radix_E:input_E:result_hex_str
- {
- unsigned char message_str[1000];
- unsigned char hash_result[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- mpi P1, Q1, H, G;
- int hash_len;
- mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( hash_result, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.P, {radix_P}, {input_P} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.Q, {radix_Q}, {input_Q} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( mpi_sub_int( &P1, &ctx.P, 1 ) == 0 );
- TEST_ASSERT( mpi_sub_int( &Q1, &ctx.Q, 1 ) == 0 );
- TEST_ASSERT( mpi_mul_mpi( &H, &P1, &Q1 ) == 0 );
- TEST_ASSERT( mpi_gcd( &G, &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.D , &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DP, &ctx.D, &P1 ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DQ, &ctx.D, &Q1 ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.QP, &ctx.Q, &ctx.P ) == 0 );
- TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
- unhexify( message_str, {message_hex_string} );
- hash_len = unhexify( hash_result, {hash_result_string} );
- TEST_ASSERT( rsa_pkcs1_sign( &ctx, NULL, NULL, RSA_PRIVATE, SIG_RSA_RAW, hash_len, hash_result, output ) == 0 );
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_verify_raw:message_hex_string:hash_result_string:padding_mode:mod:radix_N:input_N:radix_E:input_E:result_hex_str:correct
- {
- unsigned char message_str[1000];
- unsigned char hash_result[1000];
- unsigned char result_str[1000];
- rsa_context ctx;
- size_t hash_len;
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( hash_result, 0x00, 1000 );
- memset( result_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
- unhexify( message_str, {message_hex_string} );
- hash_len = unhexify( hash_result, {hash_result_string} );
- unhexify( result_str, {result_hex_str} );
- TEST_ASSERT( rsa_pkcs1_verify( &ctx, RSA_PUBLIC, SIG_RSA_RAW, hash_len, hash_result, result_str ) == {correct} );
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_encrypt:message_hex_string:padding_mode:mod:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- size_t msg_len;
- rnd_pseudo_info rnd_info;
- memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
- msg_len = unhexify( message_str, {message_hex_string} );
- TEST_ASSERT( rsa_pkcs1_encrypt( &ctx, &rnd_pseudo_rand, &rnd_info, RSA_PUBLIC, msg_len, message_str, output ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_encrypt_bad_rng:message_hex_string:padding_mode:mod:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- size_t msg_len;
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
- msg_len = unhexify( message_str, {message_hex_string} );
- TEST_ASSERT( rsa_pkcs1_encrypt( &ctx, &rnd_zero_rand, NULL, RSA_PUBLIC, msg_len, message_str, output ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- rsa_pkcs1_decrypt:message_hex_string:padding_mode:mod:radix_P:input_P:radix_Q:input_Q:radix_N:input_N:radix_E:input_E:max_output:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- mpi P1, Q1, H, G;
- size_t output_len;
- mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
- rsa_init( &ctx, {padding_mode}, 0 );
- memset( message_str, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.P, {radix_P}, {input_P} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.Q, {radix_Q}, {input_Q} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( mpi_sub_int( &P1, &ctx.P, 1 ) == 0 );
- TEST_ASSERT( mpi_sub_int( &Q1, &ctx.Q, 1 ) == 0 );
- TEST_ASSERT( mpi_mul_mpi( &H, &P1, &Q1 ) == 0 );
- TEST_ASSERT( mpi_gcd( &G, &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.D , &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DP, &ctx.D, &P1 ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DQ, &ctx.D, &Q1 ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.QP, &ctx.Q, &ctx.P ) == 0 );
- TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
- unhexify( message_str, {message_hex_string} );
- output_len = 0;
- TEST_ASSERT( rsa_pkcs1_decrypt( &ctx, RSA_PRIVATE, &output_len, message_str, output, {max_output} ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strncasecmp( (char *) output_str, {result_hex_str}, strlen( {result_hex_str} ) ) == 0 );
- }
- mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
- }
- END_CASE
- BEGIN_CASE
- rsa_public:message_hex_string:mod:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- rsa_init( &ctx, RSA_PKCS_V15, 0 );
- memset( message_str, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
- unhexify( message_str, {message_hex_string} );
- TEST_ASSERT( rsa_public( &ctx, message_str, output ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- rsa_private:message_hex_string:mod:radix_P:input_P:radix_Q:input_Q:radix_N:input_N:radix_E:input_E:result_hex_str:result
- {
- unsigned char message_str[1000];
- unsigned char output[1000];
- unsigned char output_str[1000];
- rsa_context ctx;
- mpi P1, Q1, H, G;
- mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
- rsa_init( &ctx, RSA_PKCS_V15, 0 );
- memset( message_str, 0x00, 1000 );
- memset( output, 0x00, 1000 );
- memset( output_str, 0x00, 1000 );
- ctx.len = {mod} / 8;
- TEST_ASSERT( mpi_read_string( &ctx.P, {radix_P}, {input_P} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.Q, {radix_Q}, {input_Q} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- TEST_ASSERT( mpi_sub_int( &P1, &ctx.P, 1 ) == 0 );
- TEST_ASSERT( mpi_sub_int( &Q1, &ctx.Q, 1 ) == 0 );
- TEST_ASSERT( mpi_mul_mpi( &H, &P1, &Q1 ) == 0 );
- TEST_ASSERT( mpi_gcd( &G, &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.D , &ctx.E, &H ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DP, &ctx.D, &P1 ) == 0 );
- TEST_ASSERT( mpi_mod_mpi( &ctx.DQ, &ctx.D, &Q1 ) == 0 );
- TEST_ASSERT( mpi_inv_mod( &ctx.QP, &ctx.Q, &ctx.P ) == 0 );
- TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
- unhexify( message_str, {message_hex_string} );
- TEST_ASSERT( rsa_private( &ctx, message_str, output ) == {result} );
- if( {result} == 0 )
- {
- hexify( output_str, output, ctx.len );
- TEST_ASSERT( strcasecmp( (char *) output_str, {result_hex_str} ) == 0 );
- }
- mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
- }
- END_CASE
- BEGIN_CASE
- rsa_check_privkey_null:
- {
- rsa_context ctx;
- memset( &ctx, 0x00, sizeof( rsa_context ) );
- TEST_ASSERT( rsa_check_privkey( &ctx ) == POLARSSL_ERR_RSA_KEY_CHECK_FAILED );
- }
- END_CASE
- BEGIN_CASE
- rsa_check_pubkey:radix_N:input_N:radix_E:input_E:result
- {
- rsa_context ctx;
- rsa_init( &ctx, RSA_PKCS_V15, 0 );
- if( strlen( {input_N} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- }
- if( strlen( {input_E} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- }
- TEST_ASSERT( rsa_check_pubkey( &ctx ) == {result} );
- }
- END_CASE
- BEGIN_CASE
- rsa_check_privkey:mod:radix_P:input_P:radix_Q:input_Q:radix_N:input_N:radix_E:input_E:radix_D:input_D:result
- {
- rsa_context ctx;
- rsa_init( &ctx, RSA_PKCS_V15, 0 );
- ctx.len = {mod} / 8;
- if( strlen( {input_P} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.P, {radix_P}, {input_P} ) == 0 );
- }
- if( strlen( {input_Q} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.Q, {radix_Q}, {input_Q} ) == 0 );
- }
- if( strlen( {input_N} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.N, {radix_N}, {input_N} ) == 0 );
- }
- if( strlen( {input_E} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.E, {radix_E}, {input_E} ) == 0 );
- }
- if( strlen( {input_D} ) )
- {
- TEST_ASSERT( mpi_read_string( &ctx.D, {radix_D}, {input_D} ) == 0 );
- }
- TEST_ASSERT( rsa_check_privkey( &ctx ) == {result} );
- }
- END_CASE
- BEGIN_CASE
- rsa_gen_key:nrbits:exponent:result
- {
- rsa_context ctx;
- havege_state hs;
- havege_init( &hs );
- rsa_init( &ctx, 0, 0 );
- TEST_ASSERT( rsa_gen_key( &ctx, havege_rand, &hs, {nrbits}, {exponent} ) == {result} );
- if( {result} == 0 )
- {
- TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- rsa_selftest:
- {
- TEST_ASSERT( rsa_self_test( 0 ) == 0 );
- }
- END_CASE
|