mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 23:45:49 +01:00
Merge remote-tracking branch 'upstream-public/pr/1268' into mbedtls-1.3
This commit is contained in:
commit
d3e3725dda
@ -45,6 +45,9 @@ Bugfix
|
|||||||
MilenkoMitrovic, #1104
|
MilenkoMitrovic, #1104
|
||||||
* Fix mbedtls_timing_alarm(0) on Unix.
|
* Fix mbedtls_timing_alarm(0) on Unix.
|
||||||
* Fix use of uninitialized memory in mbedtls_timing_get_timer when reset=1.
|
* Fix use of uninitialized memory in mbedtls_timing_get_timer when reset=1.
|
||||||
|
* Fix issue in RSA key generation program programs/x509/rsa_genkey
|
||||||
|
where the failure of CTR DRBG initialization lead to freeing an
|
||||||
|
RSA context without proper initialization beforehand.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Extend cert_write example program by options to set the CRT version
|
* Extend cert_write example program by options to set the CRT version
|
||||||
|
@ -74,6 +74,7 @@ int main( void )
|
|||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
|
|
||||||
entropy_init( &entropy );
|
entropy_init( &entropy );
|
||||||
|
rsa_init( &rsa, RSA_PKCS_V15, 0 );
|
||||||
if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
|
if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
|
||||||
(const unsigned char *) pers,
|
(const unsigned char *) pers,
|
||||||
strlen( pers ) ) ) != 0 )
|
strlen( pers ) ) ) != 0 )
|
||||||
@ -85,7 +86,6 @@ int main( void )
|
|||||||
polarssl_printf( " ok\n . Generating the RSA key [ %d-bit ]...", KEY_SIZE );
|
polarssl_printf( " ok\n . Generating the RSA key [ %d-bit ]...", KEY_SIZE );
|
||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
|
|
||||||
rsa_init( &rsa, RSA_PKCS_V15, 0 );
|
|
||||||
|
|
||||||
if( ( ret = rsa_gen_key( &rsa, ctr_drbg_random, &ctr_drbg, KEY_SIZE,
|
if( ( ret = rsa_gen_key( &rsa, ctr_drbg_random, &ctr_drbg, KEY_SIZE,
|
||||||
EXPONENT ) ) != 0 )
|
EXPONENT ) ) != 0 )
|
||||||
|
@ -823,7 +823,8 @@ void mpi_gen_prime( int bits, int safe, int ref_ret )
|
|||||||
TEST_ASSERT( mpi_is_prime( &X, rnd_std_rand, NULL ) == 0 );
|
TEST_ASSERT( mpi_is_prime( &X, rnd_std_rand, NULL ) == 0 );
|
||||||
if( safe )
|
if( safe )
|
||||||
{
|
{
|
||||||
mpi_shift_r( &X, 1 ); /* X = ( X - 1 ) / 2 */
|
/* X = ( X - 1 ) / 2 */
|
||||||
|
TEST_ASSERT( mpi_shift_r( &X, 1 ) == 0 );
|
||||||
TEST_ASSERT( mpi_is_prime( &X, rnd_std_rand, NULL ) == 0 );
|
TEST_ASSERT( mpi_is_prime( &X, rnd_std_rand, NULL ) == 0 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user