Add test for x509parse_public_keyfile_ec

This commit is contained in:
Manuel Pégourié-Gonnard
2013-06-27 15:33:04 +02:00
parent 26833c2fc6
commit 1bc6931f8c
4 changed files with 33 additions and 0 deletions

View File

@@ -179,6 +179,27 @@ x509parse_public_keyfile_rsa:key_file:result
}
END_CASE
BEGIN_CASE
x509parse_public_keyfile_ec:key_file:result
{
ecp_keypair eckey;
int res;
ecp_keypair_init( &eckey );
res = x509parse_public_keyfile_ec( &eckey, {key_file} );
TEST_ASSERT( res == {result} );
if( res == 0 )
{
TEST_ASSERT( ecp_check_pubkey( &eckey.grp, &eckey.Q ) == 0 );
}
ecp_keypair_free( &eckey );
}
END_CASE
BEGIN_CASE
x509parse_crt:crt_data:result_str:result
{