Add output length test for LMS export too-big test
Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
parent
33f7d66304
commit
ed0e4591dc
2 changed files with 4 additions and 0 deletions
|
@ -184,6 +184,8 @@ void lmots_import_export_test ( data_t * pub_key, int expected_import_rc )
|
|||
TEST_EQUAL( mbedtls_lmots_export_public_key( &ctx, exported_pub_key,
|
||||
exported_pub_key_buf_size, NULL ),
|
||||
0 );
|
||||
TEST_EQUAL( exported_pub_key_buf_size,
|
||||
MBEDTLS_LMOTS_PUBLIC_KEY_LEN(MBEDTLS_LMOTS_SHA256_N32_W8) );
|
||||
ASSERT_COMPARE( pub_key->x, pub_key->len,
|
||||
exported_pub_key, exported_pub_key_size );
|
||||
mbedtls_free(exported_pub_key);
|
||||
|
|
|
@ -186,6 +186,8 @@ void lms_import_export_test ( data_t * pub_key, int expected_import_rc )
|
|||
TEST_EQUAL( mbedtls_lms_export_public_key( &ctx, exported_pub_key,
|
||||
exported_pub_key_buf_size, NULL ),
|
||||
0 );
|
||||
TEST_EQUAL( exported_pub_key_size,
|
||||
MBEDTLS_LMS_PUBLIC_KEY_LEN(MBEDTLS_LMS_SHA256_M32_H10 ) );
|
||||
ASSERT_COMPARE( pub_key->x, pub_key->len,
|
||||
exported_pub_key, exported_pub_key_size );
|
||||
mbedtls_free(exported_pub_key);
|
||||
|
|
Loading…
Reference in a new issue