Fix RSA test suite bugged by hexify/unhexify change
This commit is contained in:
parent
392267a7c8
commit
47b40609de
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue