Add output length test for LMS export too-big test

Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
Raef Coles 2022-10-13 15:05:47 +01:00
parent 33f7d66304
commit ed0e4591dc
No known key found for this signature in database
GPG key ID: 1AAF1B43DF2086F4
2 changed files with 4 additions and 0 deletions

View file

@ -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);

View file

@ -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);