Searched refs:radix (Results 1 – 8 of 8) sorted by relevance
/mbedtls-development/library/ |
A D | bignum.c | 583 if( radix < 2 || radix > 16 ) in mbedtls_mpi_read_string() 602 if( radix == 16 ) in mbedtls_mpi_read_string() 693 if( radix < 2 || radix > 16 ) in mbedtls_mpi_write_string() 726 if( radix == 16 ) in mbedtls_mpi_write_string() 784 if( radix < 2 || radix > 16 ) in mbedtls_mpi_read_file() 820 if( radix < 2 || radix > 16 ) in mbedtls_mpi_write_file() 1866 while( q1 >= radix || ( q1 * d0 > radix * r0 + u0_msw ) ) in mbedtls_int_div_int() 1871 if ( r0 >= radix ) break; in mbedtls_int_div_int() 1878 while( q0 >= radix || ( q0 * d0 > radix * r0 + u0_lsw ) ) in mbedtls_int_div_int() 1883 if ( r0 >= radix ) break; in mbedtls_int_div_int() [all …]
|
A D | ecp.c | 702 int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix, in mbedtls_ecp_point_read_string() argument 710 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->X, radix, x ) ); in mbedtls_ecp_point_read_string() 711 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->Y, radix, y ) ); in mbedtls_ecp_point_read_string()
|
/mbedtls-development/include/mbedtls/ |
A D | bignum.h | 416 int mbedtls_mpi_read_string( mbedtls_mpi *X, int radix, const char *s ); 440 int mbedtls_mpi_write_string( const mbedtls_mpi *X, int radix, 465 int mbedtls_mpi_read_file( mbedtls_mpi *X, int radix, FILE *fin ); 483 int radix, FILE *fout );
|
A D | ecp.h | 722 int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix,
|
/mbedtls-development/tests/src/ |
A D | helpers.c | 289 int mbedtls_test_read_mpi( mbedtls_mpi *X, int radix, const char *s ) in mbedtls_test_read_mpi() argument 299 return( mbedtls_mpi_read_string( X, radix, s ) ); in mbedtls_test_read_mpi()
|
/mbedtls-development/tests/include/test/ |
A D | helpers.h | 254 int mbedtls_test_read_mpi( mbedtls_mpi *X, int radix, const char *s );
|
/mbedtls-development/tests/suites/ |
A D | test_suite_debug.function | 186 void mbedtls_debug_print_mpi( int radix, char * value, char * file, int line, 209 TEST_ASSERT( mbedtls_test_read_mpi( &val, radix, value ) == 0 );
|
A D | test_suite_mpi.data | 46 Test mpi_read_write_string #2 (Illegal input radix) 55 Test mpi_read_write_string #5 (Illegal output radix) 58 Test mpi_read_write_string #6 (Output radix of 15)
|
Completed in 21 milliseconds