Fix RSA test suite bugged by hexify/unhexify change

This commit is contained in:
Azim Khan 2017-06-01 16:48:09 +01:00 committed by Mohammad Azim Khan
parent 392267a7c8
commit 47b40609de

View file

@ -403,7 +403,7 @@ void mbedtls_rsa_public( uint8_t * message_str, uint32_t message_str_len,
if( result == 0 )
{
TEST_ASSERT( hexcmp( output, result_hex_str, ctx2.len, result_hex_str_len ) == 0 );
TEST_ASSERT( hexcmp( output, result_hex_str, ctx.len, result_hex_str_len ) == 0 );
}
/* And now with the copy */
@ -418,7 +418,7 @@ void mbedtls_rsa_public( uint8_t * message_str, uint32_t message_str_len,
if( result == 0 )
{
TEST_ASSERT( hexcmp( output, result_hex_str, ctx2.len, result_hex_str_len ) == 0 );
TEST_ASSERT( hexcmp( output, result_hex_str, ctx.len, result_hex_str_len ) == 0 );
}
exit: