2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2009-07-07 22:18:41 +02:00
|
|
|
#include <polarssl/rsa.h>
|
2009-07-12 15:26:42 +02:00
|
|
|
#include <polarssl/md2.h>
|
|
|
|
#include <polarssl/md4.h>
|
|
|
|
#include <polarssl/md5.h>
|
2009-07-07 22:18:41 +02:00
|
|
|
#include <polarssl/sha1.h>
|
2013-06-30 14:49:12 +02:00
|
|
|
#include <polarssl/sha256.h>
|
|
|
|
#include <polarssl/sha512.h>
|
2011-12-04 18:12:15 +01:00
|
|
|
#include <polarssl/entropy.h>
|
|
|
|
#include <polarssl/ctr_drbg.h>
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
|
|
|
* depends_on:POLARSSL_RSA_C:POLARSSL_BIGNUM_C:POLARSSL_GENPRIME
|
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_sign( char *message_hex_string, int padding_mode, int digest,
|
|
|
|
int mod, int radix_P, char *input_P, int radix_Q,
|
|
|
|
char *input_Q, int radix_N, char *input_N, int radix_E,
|
|
|
|
char *input_E, char *result_hex_str, int result )
|
2009-07-07 22:18:41 +02:00
|
|
|
{
|
|
|
|
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;
|
2009-07-11 21:15:20 +02:00
|
|
|
int msg_len;
|
2013-08-30 10:30:02 +02:00
|
|
|
rnd_pseudo_info rnd_info;
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( hash_result, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
2013-08-30 10:30:02 +02:00
|
|
|
memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
msg_len = unhexify( message_str, message_hex_string );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( md_info_from_type( digest ) != NULL )
|
|
|
|
TEST_ASSERT( md( md_info_from_type( digest ), message_str, msg_len, hash_result ) == 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-30 10:30:02 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_sign( &ctx, &rnd_pseudo_rand, &rnd_info, RSA_PRIVATE, digest, 0, hash_result, output ) == result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result == 0 )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-07 22:18:41 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_verify( char *message_hex_string, int padding_mode, int digest,
|
|
|
|
int mod, int radix_N, char *input_N, int radix_E,
|
|
|
|
char *input_E, char *result_hex_str, int result )
|
2009-07-07 22:18:41 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char hash_result[1000];
|
|
|
|
unsigned char result_str[1000];
|
|
|
|
rsa_context ctx;
|
2009-07-11 21:15:20 +02:00
|
|
|
int msg_len;
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( hash_result, 0x00, 1000 );
|
|
|
|
memset( result_str, 0x00, 1000 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
msg_len = unhexify( message_str, message_hex_string );
|
|
|
|
unhexify( result_str, result_hex_str );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( md_info_from_type( digest ) != NULL )
|
|
|
|
TEST_ASSERT( md( md_info_from_type( digest ), message_str, msg_len, hash_result ) == 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-30 10:30:02 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_verify( &ctx, NULL, NULL, RSA_PUBLIC, digest, 0, hash_result, result_str ) == result );
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-07 22:18:41 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_sign_raw( char *message_hex_string, char *hash_result_string,
|
|
|
|
int padding_mode, int mod, int radix_P, char *input_P,
|
|
|
|
int radix_Q, char *input_Q, int radix_N,
|
|
|
|
char *input_N, int radix_E, char *input_E,
|
|
|
|
char *result_hex_str )
|
2009-07-07 22:18:41 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char hash_result[1000];
|
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
|
|
|
rsa_context ctx;
|
2009-07-12 15:26:42 +02:00
|
|
|
mpi P1, Q1, H, G;
|
2011-07-13 16:21:52 +02:00
|
|
|
int hash_len;
|
2013-08-30 10:30:02 +02:00
|
|
|
rnd_pseudo_info rnd_info;
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( hash_result, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
2013-08-30 10:30:02 +02:00
|
|
|
memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2009-07-12 15:26:42 +02:00
|
|
|
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 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( message_str, message_hex_string );
|
|
|
|
hash_len = unhexify( hash_result, hash_result_string );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-30 10:30:02 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_sign( &ctx, &rnd_pseudo_rand, &rnd_info, RSA_PRIVATE, POLARSSL_MD_NONE, hash_len, hash_result, output ) == 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-02-03 11:58:55 +01:00
|
|
|
/* For PKCS#1 v1.5, there is an alternative way to generate signatures */
|
|
|
|
if( padding_mode == RSA_PKCS_V15 )
|
|
|
|
{
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
|
|
|
|
TEST_ASSERT( rsa_rsaes_pkcs1_v15_encrypt( &ctx,
|
|
|
|
&rnd_pseudo_rand, &rnd_info, RSA_PRIVATE,
|
|
|
|
hash_len, hash_result, output ) == 0 );
|
|
|
|
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-07 22:18:41 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_verify_raw( char *message_hex_string, char *hash_result_string,
|
|
|
|
int padding_mode, int mod, int radix_N,
|
|
|
|
char *input_N, int radix_E, char *input_E,
|
|
|
|
char *result_hex_str, int correct )
|
2009-07-07 22:18:41 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char hash_result[1000];
|
2009-07-12 15:26:42 +02:00
|
|
|
unsigned char result_str[1000];
|
2014-02-03 11:58:55 +01:00
|
|
|
unsigned char output[1000];
|
2009-07-12 15:26:42 +02:00
|
|
|
rsa_context ctx;
|
2014-02-03 11:58:55 +01:00
|
|
|
size_t hash_len, olen;
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( hash_result, 0x00, 1000 );
|
|
|
|
memset( result_str, 0x00, 1000 );
|
2014-02-03 11:58:55 +01:00
|
|
|
memset( output, 0x00, sizeof( output ) );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( message_str, message_hex_string );
|
|
|
|
hash_len = unhexify( hash_result, hash_result_string );
|
|
|
|
unhexify( result_str, result_hex_str );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-30 10:30:02 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_verify( &ctx, NULL, NULL, RSA_PUBLIC, POLARSSL_MD_NONE, hash_len, hash_result, result_str ) == correct );
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-02-03 11:58:55 +01:00
|
|
|
/* For PKCS#1 v1.5, there is an alternative way to verify signatures */
|
|
|
|
if( padding_mode == RSA_PKCS_V15 )
|
|
|
|
{
|
|
|
|
int ok;
|
|
|
|
|
|
|
|
TEST_ASSERT( rsa_rsaes_pkcs1_v15_decrypt( &ctx,
|
|
|
|
NULL, NULL, RSA_PUBLIC,
|
|
|
|
&olen, result_str, output, sizeof( output ) ) == 0 );
|
|
|
|
|
|
|
|
ok = olen == hash_len && memcmp( output, hash_result, olen ) == 0;
|
|
|
|
if( correct == 0 )
|
|
|
|
TEST_ASSERT( ok == 1 );
|
|
|
|
else
|
|
|
|
TEST_ASSERT( ok == 0 );
|
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_encrypt( char *message_hex_string, int padding_mode, int mod,
|
|
|
|
int radix_N, char *input_N, int radix_E, char *input_E,
|
|
|
|
char *result_hex_str, int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
|
|
|
rsa_context ctx;
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t msg_len;
|
2011-03-13 16:45:42 +01:00
|
|
|
rnd_pseudo_info rnd_info;
|
|
|
|
|
|
|
|
memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
msg_len = unhexify( message_str, message_hex_string );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_encrypt( &ctx, &rnd_pseudo_rand, &rnd_info, RSA_PUBLIC, msg_len, message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_encrypt_bad_rng( char *message_hex_string, int padding_mode,
|
|
|
|
int mod, int radix_N, char *input_N,
|
|
|
|
int radix_E, char *input_E,
|
|
|
|
char *result_hex_str, int result )
|
2010-07-18 21:47:14 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
|
|
|
rsa_context ctx;
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t msg_len;
|
2010-07-18 21:47:14 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2010-07-18 21:47:14 +02:00
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2010-07-18 21:47:14 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
msg_len = unhexify( message_str, message_hex_string );
|
2010-07-18 21:47:14 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_encrypt( &ctx, &rnd_zero_rand, NULL, RSA_PUBLIC, msg_len, message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
2010-07-18 21:47:14 +02:00
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
2010-07-18 21:47:14 +02:00
|
|
|
}
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2010-07-18 21:47:14 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2010-07-18 21:47:14 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_pkcs1_decrypt( char *message_hex_string, int padding_mode, int mod,
|
|
|
|
int radix_P, char *input_P, int radix_Q, char *input_Q,
|
|
|
|
int radix_N, char *input_N, int radix_E, char *input_E,
|
|
|
|
int max_output, char *result_hex_str, int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
2009-07-07 22:18:41 +02:00
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
|
|
|
rsa_context ctx;
|
|
|
|
mpi P1, Q1, H, G;
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t output_len;
|
2013-08-30 10:30:02 +02:00
|
|
|
rnd_pseudo_info rnd_info;
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
|
2013-08-20 11:48:36 +02:00
|
|
|
rsa_init( &ctx, padding_mode, 0 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
2013-08-30 10:30:02 +02:00
|
|
|
memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( message_str, message_hex_string );
|
2009-07-11 21:15:20 +02:00
|
|
|
output_len = 0;
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-30 10:30:02 +02:00
|
|
|
TEST_ASSERT( rsa_pkcs1_decrypt( &ctx, rnd_pseudo_rand, &rnd_info, RSA_PRIVATE, &output_len, message_str, output, max_output ) == result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result == 0 )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strncasecmp( (char *) output_str, result_hex_str, strlen( result_hex_str ) ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_public( char *message_hex_string, int mod, int radix_N, char *input_N,
|
|
|
|
int radix_E, char *input_E, char *result_hex_str, int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
2014-02-03 11:16:44 +01:00
|
|
|
rsa_context ctx, ctx2; /* Also test rsa_copy() while at it */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2010-08-16 13:10:49 +02:00
|
|
|
rsa_init( &ctx, RSA_PKCS_V15, 0 );
|
2014-02-03 11:16:44 +01:00
|
|
|
rsa_init( &ctx2, RSA_PKCS_V15, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
memset( message_str, 0x00, 1000 );
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == 0 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( message_str, message_hex_string );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_public( &ctx, message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-02-03 11:16:44 +01:00
|
|
|
/* And now with the copy */
|
|
|
|
TEST_ASSERT( rsa_copy( &ctx2, &ctx ) == 0 );
|
2014-07-10 15:26:12 +02:00
|
|
|
/* clear the original to be sure */
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2014-02-03 11:16:44 +01:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx2 ) == 0 );
|
|
|
|
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
TEST_ASSERT( rsa_public( &ctx2, message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx2.len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str, result_hex_str ) == 0 );
|
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
|
|
|
rsa_free( &ctx );
|
2014-02-03 11:16:44 +01:00
|
|
|
rsa_free( &ctx2 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_private( char *message_hex_string, int mod, int radix_P, char *input_P,
|
|
|
|
int radix_Q, char *input_Q, int radix_N, char *input_N,
|
|
|
|
int radix_E, char *input_E, char *result_hex_str, int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
unsigned char message_str[1000];
|
|
|
|
unsigned char output[1000];
|
|
|
|
unsigned char output_str[1000];
|
2014-02-03 11:16:44 +01:00
|
|
|
rsa_context ctx, ctx2; /* Also test rsa_copy() while at it */
|
2009-07-12 15:26:42 +02:00
|
|
|
mpi P1, Q1, H, G;
|
2013-08-30 10:30:02 +02:00
|
|
|
rnd_pseudo_info rnd_info;
|
2013-09-13 12:57:23 +02:00
|
|
|
int i;
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
mpi_init( &P1 ); mpi_init( &Q1 ); mpi_init( &H ); mpi_init( &G );
|
2010-08-16 13:10:49 +02:00
|
|
|
rsa_init( &ctx, RSA_PKCS_V15, 0 );
|
2014-02-03 11:16:44 +01:00
|
|
|
rsa_init( &ctx2, RSA_PKCS_V15, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
|
|
|
memset( message_str, 0x00, 1000 );
|
2013-08-30 10:30:02 +02:00
|
|
|
memset( &rnd_info, 0, sizeof( rnd_pseudo_info ) );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
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 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( message_str, message_hex_string );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-09-13 12:57:23 +02:00
|
|
|
/* repeat three times to test updating of blinding values */
|
|
|
|
for( i = 0; i < 3; i++ )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-09-13 12:57:23 +02:00
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
TEST_ASSERT( rsa_private( &ctx, rnd_pseudo_rand, &rnd_info,
|
|
|
|
message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx.len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str,
|
|
|
|
result_hex_str ) == 0 );
|
|
|
|
}
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-02-03 11:16:44 +01:00
|
|
|
/* And now one more time with the copy */
|
|
|
|
TEST_ASSERT( rsa_copy( &ctx2, &ctx ) == 0 );
|
2014-07-10 15:26:12 +02:00
|
|
|
/* clear the original to be sure */
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2014-02-03 11:16:44 +01:00
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_privkey( &ctx2 ) == 0 );
|
|
|
|
|
|
|
|
memset( output, 0x00, 1000 );
|
|
|
|
memset( output_str, 0x00, 1000 );
|
|
|
|
TEST_ASSERT( rsa_private( &ctx2, rnd_pseudo_rand, &rnd_info,
|
|
|
|
message_str, output ) == result );
|
|
|
|
if( result == 0 )
|
|
|
|
{
|
|
|
|
hexify( output_str, output, ctx2.len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcasecmp( (char *) output_str,
|
|
|
|
result_hex_str ) == 0 );
|
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2014-02-03 11:16:44 +01:00
|
|
|
mpi_free( &P1 ); mpi_free( &Q1 ); mpi_free( &H ); mpi_free( &G );
|
2014-07-10 15:26:12 +02:00
|
|
|
rsa_free( &ctx ); rsa_free( &ctx2 );
|
2009-07-07 22:18:41 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-07 22:18:41 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_check_privkey_null()
|
2009-07-11 00:38:58 +02:00
|
|
|
{
|
|
|
|
rsa_context ctx;
|
|
|
|
memset( &ctx, 0x00, sizeof( rsa_context ) );
|
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_privkey( &ctx ) == POLARSSL_ERR_RSA_KEY_CHECK_FAILED );
|
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-11 00:38:58 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_check_pubkey( int radix_N, char *input_N, int radix_E, char *input_E,
|
|
|
|
int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
rsa_context ctx;
|
|
|
|
|
2010-08-16 13:10:49 +02:00
|
|
|
rsa_init( &ctx, RSA_PKCS_V15, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_N ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.N, radix_N, input_N ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_E ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.E, radix_E, input_E ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_check_pubkey( &ctx ) == result );
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_check_privkey( int mod, int radix_P, char *input_P, int radix_Q,
|
|
|
|
char *input_Q, int radix_N, char *input_N,
|
|
|
|
int radix_E, char *input_E, int radix_D, char *input_D,
|
|
|
|
int radix_DP, char *input_DP, int radix_DQ,
|
|
|
|
char *input_DQ, int radix_QP, char *input_QP,
|
|
|
|
int result )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
rsa_context ctx;
|
|
|
|
|
2010-08-16 13:10:49 +02:00
|
|
|
rsa_init( &ctx, RSA_PKCS_V15, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
ctx.len = mod / 8;
|
|
|
|
if( strlen( input_P ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.P, radix_P, input_P ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_Q ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.Q, radix_Q, input_Q ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_N ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.N, radix_N, input_N ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_E ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.E, radix_E, input_E ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_D ) )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.D, radix_D, input_D ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_DP ) )
|
2012-09-27 22:41:37 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.DP, radix_DP, input_DP ) == 0 );
|
2012-09-27 22:41:37 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_DQ ) )
|
2012-09-27 22:41:37 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.DQ, radix_DQ, input_DQ ) == 0 );
|
2012-09-27 22:41:37 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_QP ) )
|
2012-09-27 22:41:37 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( mpi_read_string( &ctx.QP, radix_QP, input_QP ) == 0 );
|
2012-09-27 22:41:37 +02:00
|
|
|
}
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_check_privkey( &ctx ) == result );
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2014-11-06 14:02:51 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void rsa_check_pubpriv( int mod, int radix_Npub, char *input_Npub,
|
|
|
|
int radix_Epub, char *input_Epub,
|
|
|
|
int radix_P, char *input_P, int radix_Q,
|
|
|
|
char *input_Q, int radix_N, char *input_N,
|
|
|
|
int radix_E, char *input_E, int radix_D, char *input_D,
|
|
|
|
int radix_DP, char *input_DP, int radix_DQ,
|
|
|
|
char *input_DQ, int radix_QP, char *input_QP,
|
|
|
|
int result )
|
|
|
|
{
|
|
|
|
rsa_context pub, prv;
|
|
|
|
|
|
|
|
rsa_init( &pub, RSA_PKCS_V15, 0 );
|
|
|
|
rsa_init( &prv, RSA_PKCS_V15, 0 );
|
|
|
|
|
|
|
|
pub.len = mod / 8;
|
|
|
|
prv.len = mod / 8;
|
|
|
|
|
|
|
|
if( strlen( input_Npub ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &pub.N, radix_Npub, input_Npub ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_Epub ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &pub.E, radix_Epub, input_Epub ) == 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( strlen( input_P ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.P, radix_P, input_P ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_Q ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.Q, radix_Q, input_Q ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_N ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.N, radix_N, input_N ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_E ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.E, radix_E, input_E ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_D ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.D, radix_D, input_D ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_DP ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.DP, radix_DP, input_DP ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_DQ ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.DQ, radix_DQ, input_DQ ) == 0 );
|
|
|
|
}
|
|
|
|
if( strlen( input_QP ) )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mpi_read_string( &prv.QP, radix_QP, input_QP ) == 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_ASSERT( rsa_check_pub_priv( &pub, &prv ) == result );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
rsa_free( &pub );
|
|
|
|
rsa_free( &prv );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-12-01 16:27:00 +01:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_CTR_DRBG_C:POLARSSL_ENTROPY_C */
|
2013-08-20 11:48:36 +02:00
|
|
|
void rsa_gen_key( int nrbits, int exponent, int result)
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
rsa_context ctx;
|
2011-12-04 18:12:15 +01:00
|
|
|
entropy_context entropy;
|
|
|
|
ctr_drbg_context ctr_drbg;
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "test_suite_rsa";
|
2011-12-04 18:12:15 +01:00
|
|
|
|
|
|
|
entropy_init( &entropy );
|
|
|
|
TEST_ASSERT( ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
|
2013-06-24 13:01:08 +02:00
|
|
|
(const unsigned char *) pers, strlen( pers ) ) == 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2010-08-16 13:10:49 +02:00
|
|
|
rsa_init( &ctx, 0, 0 );
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( rsa_gen_key( &ctx, ctr_drbg_random, &ctr_drbg, nrbits, exponent ) == result );
|
|
|
|
if( result == 0 )
|
2009-07-12 15:26:42 +02:00
|
|
|
{
|
|
|
|
TEST_ASSERT( rsa_check_privkey( &ctx ) == 0 );
|
|
|
|
}
|
2013-01-03 11:33:48 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2013-01-03 11:33:48 +01:00
|
|
|
rsa_free( &ctx );
|
2014-06-18 16:44:11 +02:00
|
|
|
ctr_drbg_free( &ctr_drbg );
|
2013-09-28 15:23:03 +02:00
|
|
|
entropy_free( &entropy );
|
2009-07-12 15:26:42 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 15:26:42 +02:00
|
|
|
|
2013-10-10 12:48:03 +02:00
|
|
|
/* BEGIN_CASE depends_on:POLARSSL_SELF_TEST */
|
2013-08-20 11:48:36 +02:00
|
|
|
void rsa_selftest()
|
2009-07-07 22:18:41 +02:00
|
|
|
{
|
|
|
|
TEST_ASSERT( rsa_self_test( 0 ) == 0 );
|
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|