2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/bignum.h"
|
Bignum: Add tests for primality testing
Primality tests have to deal with different distribution when generating
primes and when validating primes.
These new tests are testing if mbedtls_mpi_is_prime() is working
properly in the latter setting.
The new tests involve pseudoprimes with maximum number of
non-witnesses. The non-witnesses were generated by printing them
from mpi_miller_rabin(). The pseudoprimes were generated by the
following function:
void gen_monier( mbedtls_mpi* res, int nbits )
{
mbedtls_mpi p_2x_plus_1, p_4x_plus_1, x, tmp;
mbedtls_mpi_init( &p_2x_plus_1 );
mbedtls_mpi_init( &p_4x_plus_1 );
mbedtls_mpi_init( &x ); mbedtls_mpi_init( &tmp );
do
{
mbedtls_mpi_gen_prime( &p_2x_plus_1, nbits >> 1, 0,
rnd_std_rand, NULL );
mbedtls_mpi_sub_int( &x, &p_2x_plus_1, 1 );
mbedtls_mpi_div_int( &x, &tmp, &x, 2 );
if( mbedtls_mpi_get_bit( &x, 0 ) == 0 )
continue;
mbedtls_mpi_mul_int( &p_4x_plus_1, &x, 4 );
mbedtls_mpi_add_int( &p_4x_plus_1, &p_4x_plus_1, 1 );
if( mbedtls_mpi_is_prime( &p_4x_plus_1, rnd_std_rand,
NULL ) == 0 )
break;
} while( 1 );
mbedtls_mpi_mul_mpi( res, &p_2x_plus_1, &p_4x_plus_1 );
}
2018-09-05 18:04:49 +02:00
|
|
|
|
|
|
|
typedef struct mbedtls_test_mpi_random
|
|
|
|
{
|
|
|
|
data_t *data;
|
|
|
|
size_t pos;
|
|
|
|
size_t chunk_len;
|
|
|
|
} mbedtls_test_mpi_random;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is called by the Miller-Rabin primality test each time it
|
|
|
|
* chooses a random witness. The witnesses (or non-witnesses as provided by the
|
|
|
|
* test) are stored in the data member of the state structure. Each number is in
|
|
|
|
* the format that mbedtls_mpi_read_string understands and is chunk_len long.
|
|
|
|
*/
|
|
|
|
int mbedtls_test_mpi_miller_rabin_determinizer( void* state,
|
|
|
|
unsigned char* buf,
|
|
|
|
size_t len )
|
|
|
|
{
|
|
|
|
mbedtls_test_mpi_random *random = (mbedtls_test_mpi_random*) state;
|
|
|
|
|
|
|
|
if( random == NULL || random->data->x == NULL || buf == NULL )
|
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
if( random->pos + random->chunk_len > random->data->len
|
|
|
|
|| random->chunk_len > len )
|
|
|
|
{
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
memset( buf, 0, len );
|
|
|
|
|
|
|
|
/* The witness is written to the end of the buffer, since the buffer is
|
|
|
|
* used as big endian, unsigned binary data in mbedtls_mpi_read_binary.
|
|
|
|
* Writing the witness to the start of the buffer would result in the
|
|
|
|
* buffer being 'witness 000...000', which would be treated as
|
|
|
|
* witness * 2^n for some n. */
|
|
|
|
memcpy( buf + len - random->chunk_len, &random->data->x[random->pos],
|
|
|
|
random->chunk_len );
|
|
|
|
|
|
|
|
random->pos += random->chunk_len;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_BIGNUM_C
|
2013-08-20 11:48:36 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2018-12-19 00:25:01 +01:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mpi_valid_param( )
|
|
|
|
{
|
|
|
|
TEST_VALID_PARAM( mbedtls_mpi_free( NULL ) );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CHECK_PARAMS:!MBEDTLS_PARAM_FAILED_ALT */
|
|
|
|
void mpi_invalid_param( )
|
|
|
|
{
|
|
|
|
mbedtls_mpi X;
|
|
|
|
const char *s_in = "00101000101010";
|
|
|
|
char s_out[16] = { 0 };
|
|
|
|
unsigned char u_out[16] = { 0 };
|
|
|
|
unsigned char u_in[16] = { 0 };
|
|
|
|
size_t olen;
|
|
|
|
mbedtls_mpi_uint mpi_uint;
|
|
|
|
|
|
|
|
TEST_INVALID_PARAM( mbedtls_mpi_init( NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_grow( NULL, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_copy( NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_copy( &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM( mbedtls_mpi_swap( NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM( mbedtls_mpi_swap( &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_safe_cond_assign( NULL, &X, 0 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_safe_cond_assign( &X, NULL, 0 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_safe_cond_swap( NULL, &X, 0 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_safe_cond_swap( &X, NULL, 0 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_lset( NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_get_bit( NULL, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_set_bit( NULL, 42, 0 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_string( NULL, 2, s_in ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_string( &X, 2, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_string( NULL, 2,
|
|
|
|
s_out, sizeof( s_out ),
|
|
|
|
&olen ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_string( &X, 2,
|
|
|
|
NULL, sizeof( s_out ),
|
|
|
|
&olen ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_string( &X, 2,
|
|
|
|
s_out, sizeof( s_out ),
|
|
|
|
NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_file( NULL, 2, stdin ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_file( &X, 2, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_file( "", NULL, 2, NULL ) );
|
|
|
|
#endif /* MBEDTLS_FS_IO */
|
|
|
|
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_binary( NULL, u_in,
|
|
|
|
sizeof( u_in ) ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_read_binary( &X, NULL,
|
|
|
|
sizeof( u_in ) ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_binary( NULL, u_out,
|
|
|
|
sizeof( u_out ) ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_write_binary( &X, NULL,
|
|
|
|
sizeof( u_out ) ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_shift_l( NULL, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_shift_r( NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_cmp_abs( NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_cmp_abs( &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_cmp_mpi( NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_cmp_mpi( &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_cmp_int( NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_abs( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_abs( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_abs( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_abs( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_abs( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_abs( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_mpi( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_mpi( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_mpi( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_mpi( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_mpi( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_mpi( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_int( NULL, &X, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_add_int( &X, NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_int( NULL, &X, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_sub_int( &X, NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mul_mpi( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mul_mpi( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mul_mpi( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mul_int( NULL, &X, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mul_int( &X, NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_div_mpi( &X, &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_div_mpi( &X, &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_div_int( &X, &X, NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-19 17:51:02 +01:00
|
|
|
TEST_INVALID_PARAM_RET( 0, mbedtls_mpi_lsb( NULL ) );
|
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mod_mpi( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mod_mpi( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mod_mpi( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mod_int( NULL, &X, 42 ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_mod_int( &mpi_uint, NULL, 42 ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_exp_mod( NULL, &X, &X, &X, NULL ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_exp_mod( &X, NULL, &X, &X, NULL ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_exp_mod( &X, &X, NULL, &X, NULL ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_exp_mod( &X, &X, &X, NULL, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_fill_random( NULL, 42, rnd_std_rand,
|
|
|
|
NULL ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_fill_random( &X, 42, NULL, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_gcd( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_gcd( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_gcd( &X, &X, NULL ) );
|
2018-12-13 15:31:46 +01:00
|
|
|
|
2018-12-11 15:27:08 +01:00
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_inv_mod( NULL, &X, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
|
|
|
mbedtls_mpi_inv_mod( &X, NULL, &X ) );
|
|
|
|
TEST_INVALID_PARAM_RET( MBEDTLS_ERR_MPI_BAD_INPUT_DATA,
|
2018-12-13 15:31:46 +01:00
|
|
|
mbedtls_mpi_inv_mod( &X, &X, NULL ) );
|
2018-12-11 15:27:08 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-29 17:02:01 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mpi_null( )
|
2015-04-29 17:02:01 +02:00
|
|
|
{
|
2015-04-30 10:28:51 +02:00
|
|
|
mbedtls_mpi X, Y, Z;
|
2015-04-29 17:02:01 +02:00
|
|
|
|
2015-04-30 10:28:51 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
|
|
|
mbedtls_mpi_init( &Y );
|
|
|
|
mbedtls_mpi_init( &Z );
|
2015-04-29 17:02:01 +02:00
|
|
|
|
2015-04-30 10:28:51 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_get_bit( &X, 42 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lsb( &X ) == 0 );
|
2015-06-18 16:47:17 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_bitlen( &X ) == 0 );
|
2015-04-30 10:28:51 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_size( &X ) == 0 );
|
2015-04-29 17:02:01 +02:00
|
|
|
|
|
|
|
exit:
|
2015-04-30 10:28:51 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2015-04-29 17:02:01 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mpi_read_write_string( int radix_X, char * input_X, int radix_A,
|
|
|
|
char * input_A, int output_size, int result_read,
|
2013-08-20 11:48:36 +02:00
|
|
|
int result_write )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-06-28 23:50:27 +02:00
|
|
|
char str[1000];
|
2015-06-02 16:41:48 +02:00
|
|
|
size_t len;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == result_read );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result_read == 0 )
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2015-06-02 16:41:48 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_write_string( &X, radix_A, str, output_size, &len ) == result_write );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result_write == 0 )
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcasecmp( str, input_A ) == 0 );
|
2009-07-12 13:01:32 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void mbedtls_mpi_read_binary( data_t * buf, int radix_A, char * input_A )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-07-06 08:40:23 +02:00
|
|
|
unsigned char str[1000];
|
2015-06-02 16:41:48 +02:00
|
|
|
size_t len;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_binary( &X, buf->x, buf->len ) == 0 );
|
2015-06-02 16:41:48 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_write_string( &X, radix_A, (char *) str, sizeof( str ), &len ) == 0 );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcmp( (char *) str, input_A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-06-09 05:32:58 +02:00
|
|
|
void mbedtls_mpi_write_binary( int radix_X, char * input_X,
|
2018-06-29 12:05:32 +02:00
|
|
|
data_t * input_A, int output_size,
|
2017-05-30 15:23:15 +02:00
|
|
|
int result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-07-06 08:40:23 +02:00
|
|
|
unsigned char buf[1000];
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t buflen;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset( buf, 0x00, 1000 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2015-10-30 09:23:19 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
buflen = mbedtls_mpi_size( &X );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( buflen > (size_t) output_size )
|
|
|
|
buflen = (size_t) output_size;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_write_binary( &X, buf, buflen ) == result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result == 0)
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( hexcmp( buf, input_A->x, buflen, input_A->len ) == 0 );
|
2009-07-12 13:01:32 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_FS_IO */
|
2017-06-09 05:32:58 +02:00
|
|
|
void mbedtls_mpi_read_file( int radix_X, char * input_file,
|
2018-06-29 12:05:32 +02:00
|
|
|
data_t * input_A, int result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-07-06 08:40:23 +02:00
|
|
|
unsigned char buf[1000];
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t buflen;
|
2009-07-11 21:15:20 +02:00
|
|
|
FILE *file;
|
2015-02-14 17:01:34 +01:00
|
|
|
int ret;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset( buf, 0x00, 1000 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
file = fopen( input_file, "r" );
|
2014-04-17 16:08:20 +02:00
|
|
|
TEST_ASSERT( file != NULL );
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_mpi_read_file( &X, radix_X, file );
|
2009-07-06 08:40:23 +02:00
|
|
|
fclose(file);
|
2015-02-14 17:01:34 +01:00
|
|
|
TEST_ASSERT( ret == result );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( result == 0 )
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
buflen = mbedtls_mpi_size( &X );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_write_binary( &X, buf, buflen ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( hexcmp( buf, input_A->x, buflen, input_A->len ) == 0 );
|
2009-07-12 13:01:32 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_FS_IO */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_write_file( int radix_X, char * input_X, int output_radix,
|
|
|
|
char * output_file )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y;
|
2009-07-11 21:15:20 +02:00
|
|
|
FILE *file_out, *file_in;
|
2015-06-24 01:08:09 +02:00
|
|
|
int ret;
|
2009-07-11 21:15:20 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
file_out = fopen( output_file, "w" );
|
2011-05-26 15:16:06 +02:00
|
|
|
TEST_ASSERT( file_out != NULL );
|
2015-06-24 01:08:09 +02:00
|
|
|
ret = mbedtls_mpi_write_file( NULL, &X, output_radix, file_out );
|
2009-07-06 08:40:23 +02:00
|
|
|
fclose(file_out);
|
2015-06-24 01:08:09 +02:00
|
|
|
TEST_ASSERT( ret == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
file_in = fopen( output_file, "r" );
|
2011-05-26 15:16:06 +02:00
|
|
|
TEST_ASSERT( file_in != NULL );
|
2015-06-24 01:08:09 +02:00
|
|
|
ret = mbedtls_mpi_read_file( &Y, output_radix, file_in );
|
2009-07-06 08:40:23 +02:00
|
|
|
fclose(file_in);
|
2015-06-24 01:08:09 +02:00
|
|
|
TEST_ASSERT( ret == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_get_bit( int radix_X, char * input_X, int pos, int val )
|
2011-05-18 17:47:11 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_get_bit( &X, pos ) == val );
|
2011-05-18 17:47:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2011-05-18 17:47:11 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-05-18 17:47:11 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_set_bit( int radix_X, char * input_X, int pos, int val,
|
|
|
|
int radix_Y, char * output_Y, int result )
|
2011-05-18 17:47:11 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y );
|
2011-05-18 17:47:11 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, output_Y ) == 0 );
|
2016-07-14 13:47:07 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_set_bit( &X, pos, val ) == result );
|
|
|
|
|
|
|
|
if( result == 0 )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) == 0 );
|
|
|
|
}
|
2011-05-18 17:47:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y );
|
2011-05-18 17:47:11 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-05-18 17:47:11 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_lsb( int radix_X, char * input_X, int nr_bits )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lsb( &X ) == (size_t) nr_bits );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_bitlen( int radix_X, char * input_X, int nr_bits )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2015-06-18 16:47:17 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_bitlen( &X ) == (size_t) nr_bits );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_gcd( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi A, X, Y, Z;
|
|
|
|
mbedtls_mpi_init( &A ); mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_gcd( &Z, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &A ); mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_mpi_cmp_int( int input_X, int input_A, int result_CMP )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &X, input_X ) == 0);
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_int( &X, input_A ) == result_CMP);
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_cmp_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) == input_A );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_cmp_abs( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_abs( &X, &Y ) == input_A );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_mpi_copy( int input_X, int input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &Y, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) != 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_copy( &Y, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &A ) != 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void mpi_copy_self( int input_X )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_copy( &X, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_int( &X, input_X ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-11-21 10:39:37 +01:00
|
|
|
/* BEGIN_CASE */
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_mpi_shrink( int before, int used, int min, int after )
|
2013-11-21 10:39:37 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
|
|
|
mbedtls_mpi_init( &X );
|
2013-11-21 10:39:37 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_grow( &X, before ) == 0 );
|
2013-11-21 10:39:37 +01:00
|
|
|
TEST_ASSERT( used <= before );
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( X.p, 0x2a, used * sizeof( mbedtls_mpi_uint ) );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_shrink( &X, min ) == 0 );
|
2013-11-21 10:39:37 +01:00
|
|
|
TEST_ASSERT( X.n == (size_t) after );
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2013-11-21 10:39:37 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-11-21 16:56:39 +01:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_safe_cond_assign( int x_sign, char * x_str, int y_sign,
|
|
|
|
char * y_str )
|
2013-11-21 16:56:39 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, XX;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &XX );
|
2013-11-21 16:56:39 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, 16, x_str ) == 0 );
|
2013-11-21 21:12:26 +01:00
|
|
|
X.s = x_sign;
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, 16, y_str ) == 0 );
|
2013-11-21 21:12:26 +01:00
|
|
|
Y.s = y_sign;
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_copy( &XX, &X ) == 0 );
|
2013-11-21 16:56:39 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_safe_cond_assign( &X, &Y, 0 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &XX ) == 0 );
|
2013-11-21 16:56:39 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_safe_cond_assign( &X, &Y, 1 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) == 0 );
|
2013-11-21 16:56:39 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &XX );
|
2013-11-21 16:56:39 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-12-04 21:41:50 +01:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_safe_cond_swap( int x_sign, char * x_str, int y_sign,
|
|
|
|
char * y_str )
|
2013-12-04 21:41:50 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, XX, YY;
|
2013-12-04 21:41:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y );
|
|
|
|
mbedtls_mpi_init( &XX ); mbedtls_mpi_init( &YY );
|
2013-12-04 21:41:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, 16, x_str ) == 0 );
|
2013-12-04 21:41:50 +01:00
|
|
|
X.s = x_sign;
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, 16, y_str ) == 0 );
|
2013-12-04 21:41:50 +01:00
|
|
|
Y.s = y_sign;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_copy( &XX, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_copy( &YY, &Y ) == 0 );
|
2013-12-04 21:41:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_safe_cond_swap( &X, &Y, 0 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &XX ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &YY ) == 0 );
|
2013-12-04 21:41:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_safe_cond_swap( &X, &Y, 1 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &XX ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &YY ) == 0 );
|
2013-12-04 21:41:50 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y );
|
|
|
|
mbedtls_mpi_free( &XX ); mbedtls_mpi_free( &YY );
|
2013-12-04 21:41:50 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_swap( int input_X, int input_Y )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_lset( &A, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) != 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
|
|
|
mbedtls_mpi_swap( &X, &Y );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &Y ) != 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_add_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_mpi( &Z, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-10-25 10:58:03 +01:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_add_mpi_inplace( int radix_X, char * input_X, int radix_A,
|
|
|
|
char * input_A )
|
2015-10-25 10:58:03 +01:00
|
|
|
{
|
|
|
|
mbedtls_mpi X, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &A );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
2015-10-25 12:29:13 +01:00
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_sub_abs( &X, &X, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_int( &X, 0 ) == 0 );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_abs( &X, &X, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2015-10-25 10:58:03 +01:00
|
|
|
TEST_ASSERT( mbedtls_mpi_add_mpi( &X, &X, &X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &A );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_add_abs( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_abs( &Z, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mpi_add_abs_add_first( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &A );
|
2009-07-12 13:01:32 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_abs( &X, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &A );
|
2009-07-12 13:01:32 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 13:01:32 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mpi_add_abs_add_second( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-07-12 13:01:32 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &A );
|
2009-07-12 13:01:32 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_abs( &Y, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Y, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &A );
|
2009-07-12 13:01:32 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-12 13:01:32 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_add_int( int radix_X, char * input_X, int input_Y,
|
|
|
|
int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_add_int( &Z, &X, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_sub_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_sub_mpi( &Z, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_sub_abs( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A,
|
|
|
|
int sub_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
2015-10-30 09:23:19 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
res = mbedtls_mpi_sub_abs( &Z, &X, &Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == sub_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_sub_int( int radix_X, char * input_X, int input_Y,
|
|
|
|
int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_sub_int( &Z, &X, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_mul_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_mul_mpi( &Z, &X, &Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_mul_int( int radix_X, char * input_X, int input_Y,
|
|
|
|
int radix_A, char * input_A,
|
|
|
|
char * result_comparison )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Z, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_mul_int( &Z, &X, input_Y ) == 0 );
|
2013-08-16 13:38:47 +02:00
|
|
|
if( strcmp( result_comparison, "==" ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2013-08-16 13:38:47 +02:00
|
|
|
else if( strcmp( result_comparison, "!=" ) == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) != 0 );
|
2013-08-16 13:38:47 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( "unknown operator" == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_div_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A,
|
|
|
|
int radix_B, char * input_B, int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Q, R, A, B;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Q ); mbedtls_mpi_init( &R );
|
|
|
|
mbedtls_mpi_init( &A ); mbedtls_mpi_init( &B );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &B, radix_B, input_B ) == 0 );
|
|
|
|
res = mbedtls_mpi_div_mpi( &Q, &R, &X, &Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Q, &A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &R, &B ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Q ); mbedtls_mpi_free( &R );
|
|
|
|
mbedtls_mpi_free( &A ); mbedtls_mpi_free( &B );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_div_int( int radix_X, char * input_X, int input_Y,
|
|
|
|
int radix_A, char * input_A, int radix_B,
|
|
|
|
char * input_B, int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Q, R, A, B;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Q ); mbedtls_mpi_init( &R ); mbedtls_mpi_init( &A );
|
|
|
|
mbedtls_mpi_init( &B );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &B, radix_B, input_B ) == 0 );
|
|
|
|
res = mbedtls_mpi_div_int( &Q, &R, &X, input_Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Q, &A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &R, &B ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Q ); mbedtls_mpi_free( &R ); mbedtls_mpi_free( &A );
|
|
|
|
mbedtls_mpi_free( &B );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_mod_mpi( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A,
|
|
|
|
int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, A;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
res = mbedtls_mpi_mod_mpi( &X, &X, &Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_mod_int( int radix_X, char * input_X, int input_Y,
|
|
|
|
int input_A, int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_uint r;
|
|
|
|
mbedtls_mpi_init( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
res = mbedtls_mpi_mod_int( &r, &X, input_Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( r == (mbedtls_mpi_uint) input_A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_exp_mod( int radix_A, char * input_A, int radix_E,
|
|
|
|
char * input_E, int radix_N, char * input_N,
|
|
|
|
int radix_RR, char * input_RR, int radix_X,
|
|
|
|
char * input_X, int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi A, E, N, RR, Z, X;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &A ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &N );
|
|
|
|
mbedtls_mpi_init( &RR ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &E, radix_E, input_E ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &N, radix_N, input_N ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strlen( input_RR ) )
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &RR, radix_RR, input_RR ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
res = mbedtls_mpi_exp_mod( &Z, &A, &E, &N, &RR );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &X ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &A ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &N );
|
|
|
|
mbedtls_mpi_free( &RR ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_inv_mod( int radix_X, char * input_X, int radix_Y,
|
|
|
|
char * input_Y, int radix_A, char * input_A,
|
|
|
|
int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, Y, Z, A;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &Y ); mbedtls_mpi_init( &Z ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &Y, radix_Y, input_Y ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
res = mbedtls_mpi_inv_mod( &Z, &X, &Y );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2009-06-28 23:50:27 +02:00
|
|
|
if( res == 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &Z, &A ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &Y ); mbedtls_mpi_free( &Z ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_GENPRIME */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_is_prime( int radix_X, char * input_X, int div_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2009-06-28 23:50:27 +02:00
|
|
|
int res;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
2018-09-18 15:48:23 +02:00
|
|
|
res = mbedtls_mpi_is_prime_ext( &X, 40, rnd_std_rand, NULL );
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( res == div_result );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
Bignum: Add tests for primality testing
Primality tests have to deal with different distribution when generating
primes and when validating primes.
These new tests are testing if mbedtls_mpi_is_prime() is working
properly in the latter setting.
The new tests involve pseudoprimes with maximum number of
non-witnesses. The non-witnesses were generated by printing them
from mpi_miller_rabin(). The pseudoprimes were generated by the
following function:
void gen_monier( mbedtls_mpi* res, int nbits )
{
mbedtls_mpi p_2x_plus_1, p_4x_plus_1, x, tmp;
mbedtls_mpi_init( &p_2x_plus_1 );
mbedtls_mpi_init( &p_4x_plus_1 );
mbedtls_mpi_init( &x ); mbedtls_mpi_init( &tmp );
do
{
mbedtls_mpi_gen_prime( &p_2x_plus_1, nbits >> 1, 0,
rnd_std_rand, NULL );
mbedtls_mpi_sub_int( &x, &p_2x_plus_1, 1 );
mbedtls_mpi_div_int( &x, &tmp, &x, 2 );
if( mbedtls_mpi_get_bit( &x, 0 ) == 0 )
continue;
mbedtls_mpi_mul_int( &p_4x_plus_1, &x, 4 );
mbedtls_mpi_add_int( &p_4x_plus_1, &p_4x_plus_1, 1 );
if( mbedtls_mpi_is_prime( &p_4x_plus_1, rnd_std_rand,
NULL ) == 0 )
break;
} while( 1 );
mbedtls_mpi_mul_mpi( res, &p_2x_plus_1, &p_4x_plus_1 );
}
2018-09-05 18:04:49 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_GENPRIME */
|
|
|
|
void mbedtls_mpi_is_prime_det( data_t * input_X, data_t * witnesses,
|
2018-10-02 16:30:39 +02:00
|
|
|
int chunk_len, int rounds )
|
Bignum: Add tests for primality testing
Primality tests have to deal with different distribution when generating
primes and when validating primes.
These new tests are testing if mbedtls_mpi_is_prime() is working
properly in the latter setting.
The new tests involve pseudoprimes with maximum number of
non-witnesses. The non-witnesses were generated by printing them
from mpi_miller_rabin(). The pseudoprimes were generated by the
following function:
void gen_monier( mbedtls_mpi* res, int nbits )
{
mbedtls_mpi p_2x_plus_1, p_4x_plus_1, x, tmp;
mbedtls_mpi_init( &p_2x_plus_1 );
mbedtls_mpi_init( &p_4x_plus_1 );
mbedtls_mpi_init( &x ); mbedtls_mpi_init( &tmp );
do
{
mbedtls_mpi_gen_prime( &p_2x_plus_1, nbits >> 1, 0,
rnd_std_rand, NULL );
mbedtls_mpi_sub_int( &x, &p_2x_plus_1, 1 );
mbedtls_mpi_div_int( &x, &tmp, &x, 2 );
if( mbedtls_mpi_get_bit( &x, 0 ) == 0 )
continue;
mbedtls_mpi_mul_int( &p_4x_plus_1, &x, 4 );
mbedtls_mpi_add_int( &p_4x_plus_1, &p_4x_plus_1, 1 );
if( mbedtls_mpi_is_prime( &p_4x_plus_1, rnd_std_rand,
NULL ) == 0 )
break;
} while( 1 );
mbedtls_mpi_mul_mpi( res, &p_2x_plus_1, &p_4x_plus_1 );
}
2018-09-05 18:04:49 +02:00
|
|
|
{
|
|
|
|
mbedtls_mpi X;
|
|
|
|
int res;
|
|
|
|
mbedtls_test_mpi_random rand;
|
|
|
|
|
|
|
|
mbedtls_mpi_init( &X );
|
|
|
|
rand.data = witnesses;
|
|
|
|
rand.pos = 0;
|
|
|
|
rand.chunk_len = chunk_len;
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_binary( &X, input_X->x, input_X->len ) == 0 );
|
2018-10-02 16:30:39 +02:00
|
|
|
res = mbedtls_mpi_is_prime_ext( &X, rounds - 1,
|
|
|
|
mbedtls_test_mpi_miller_rabin_determinizer,
|
|
|
|
&rand );
|
|
|
|
TEST_ASSERT( res == 0 );
|
|
|
|
|
|
|
|
rand.data = witnesses;
|
|
|
|
rand.pos = 0;
|
|
|
|
rand.chunk_len = chunk_len;
|
|
|
|
|
2018-09-18 15:48:23 +02:00
|
|
|
res = mbedtls_mpi_is_prime_ext( &X, rounds,
|
|
|
|
mbedtls_test_mpi_miller_rabin_determinizer,
|
Bignum: Add tests for primality testing
Primality tests have to deal with different distribution when generating
primes and when validating primes.
These new tests are testing if mbedtls_mpi_is_prime() is working
properly in the latter setting.
The new tests involve pseudoprimes with maximum number of
non-witnesses. The non-witnesses were generated by printing them
from mpi_miller_rabin(). The pseudoprimes were generated by the
following function:
void gen_monier( mbedtls_mpi* res, int nbits )
{
mbedtls_mpi p_2x_plus_1, p_4x_plus_1, x, tmp;
mbedtls_mpi_init( &p_2x_plus_1 );
mbedtls_mpi_init( &p_4x_plus_1 );
mbedtls_mpi_init( &x ); mbedtls_mpi_init( &tmp );
do
{
mbedtls_mpi_gen_prime( &p_2x_plus_1, nbits >> 1, 0,
rnd_std_rand, NULL );
mbedtls_mpi_sub_int( &x, &p_2x_plus_1, 1 );
mbedtls_mpi_div_int( &x, &tmp, &x, 2 );
if( mbedtls_mpi_get_bit( &x, 0 ) == 0 )
continue;
mbedtls_mpi_mul_int( &p_4x_plus_1, &x, 4 );
mbedtls_mpi_add_int( &p_4x_plus_1, &p_4x_plus_1, 1 );
if( mbedtls_mpi_is_prime( &p_4x_plus_1, rnd_std_rand,
NULL ) == 0 )
break;
} while( 1 );
mbedtls_mpi_mul_mpi( res, &p_2x_plus_1, &p_4x_plus_1 );
}
2018-09-05 18:04:49 +02:00
|
|
|
&rand );
|
2018-10-02 16:30:39 +02:00
|
|
|
TEST_ASSERT( res == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE );
|
Bignum: Add tests for primality testing
Primality tests have to deal with different distribution when generating
primes and when validating primes.
These new tests are testing if mbedtls_mpi_is_prime() is working
properly in the latter setting.
The new tests involve pseudoprimes with maximum number of
non-witnesses. The non-witnesses were generated by printing them
from mpi_miller_rabin(). The pseudoprimes were generated by the
following function:
void gen_monier( mbedtls_mpi* res, int nbits )
{
mbedtls_mpi p_2x_plus_1, p_4x_plus_1, x, tmp;
mbedtls_mpi_init( &p_2x_plus_1 );
mbedtls_mpi_init( &p_4x_plus_1 );
mbedtls_mpi_init( &x ); mbedtls_mpi_init( &tmp );
do
{
mbedtls_mpi_gen_prime( &p_2x_plus_1, nbits >> 1, 0,
rnd_std_rand, NULL );
mbedtls_mpi_sub_int( &x, &p_2x_plus_1, 1 );
mbedtls_mpi_div_int( &x, &tmp, &x, 2 );
if( mbedtls_mpi_get_bit( &x, 0 ) == 0 )
continue;
mbedtls_mpi_mul_int( &p_4x_plus_1, &x, 4 );
mbedtls_mpi_add_int( &p_4x_plus_1, &p_4x_plus_1, 1 );
if( mbedtls_mpi_is_prime( &p_4x_plus_1, rnd_std_rand,
NULL ) == 0 )
break;
} while( 1 );
mbedtls_mpi_mul_mpi( res, &p_2x_plus_1, &p_4x_plus_1 );
}
2018-09-05 18:04:49 +02:00
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_mpi_free( &X );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_GENPRIME */
|
2018-08-14 16:31:54 +02:00
|
|
|
void mbedtls_mpi_gen_prime( int bits, int flags, int ref_ret )
|
2014-06-16 17:12:40 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X;
|
2014-06-16 17:12:40 +02:00
|
|
|
int my_ret;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_init( &X );
|
2014-06-16 17:12:40 +02:00
|
|
|
|
2018-08-14 16:31:54 +02:00
|
|
|
my_ret = mbedtls_mpi_gen_prime( &X, bits, flags, rnd_std_rand, NULL );
|
2014-06-16 17:12:40 +02:00
|
|
|
TEST_ASSERT( my_ret == ref_ret );
|
|
|
|
|
|
|
|
if( ref_ret == 0 )
|
|
|
|
{
|
2015-06-18 16:47:17 +02:00
|
|
|
size_t actual_bits = mbedtls_mpi_bitlen( &X );
|
2014-06-16 17:12:40 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( actual_bits >= (size_t) bits );
|
|
|
|
TEST_ASSERT( actual_bits <= (size_t) bits + 1 );
|
|
|
|
|
2018-09-18 15:48:23 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_is_prime_ext( &X, 40, rnd_std_rand, NULL )
|
|
|
|
== 0 );
|
2018-08-14 16:31:54 +02:00
|
|
|
if( flags & MBEDTLS_MPI_GEN_PRIME_FLAG_DH )
|
2014-06-16 17:12:40 +02:00
|
|
|
{
|
2018-01-10 08:12:01 +01:00
|
|
|
/* X = ( X - 1 ) / 2 */
|
|
|
|
TEST_ASSERT( mbedtls_mpi_shift_r( &X, 1 ) == 0 );
|
2018-09-18 15:48:23 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_is_prime_ext( &X, 40, rnd_std_rand, NULL )
|
|
|
|
== 0 );
|
2014-06-16 17:12:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X );
|
2014-06-16 17:12:40 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_shift_l( int radix_X, char * input_X, int shift_X,
|
|
|
|
int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_shift_l( &X, shift_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_mpi_shift_r( int radix_X, char * input_X, int shift_X,
|
|
|
|
int radix_A, char * input_A )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi X, A;
|
|
|
|
mbedtls_mpi_init( &X ); mbedtls_mpi_init( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &X, radix_X, input_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_read_string( &A, radix_A, input_A ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_shift_r( &X, shift_X ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_mpi_cmp_mpi( &X, &A ) == 0 );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_mpi_free( &X ); mbedtls_mpi_free( &A );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mpi_selftest( )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2016-09-09 10:10:28 +02:00
|
|
|
TEST_ASSERT( mbedtls_mpi_self_test( 1 ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|