Whitespace fixes; removed redundant parentheses

No semantic change.
This commit is contained in:
Gilles Peskine 2018-06-04 15:08:56 +02:00 committed by itayzafrir
parent c425e87af7
commit 785fd55a39
2 changed files with 6 additions and 7 deletions

View File

@ -474,8 +474,8 @@ static psa_status_t psa_internal_export_key(psa_key_slot_t key,
if( !( slot->policy.usage & PSA_KEY_USAGE_EXPORT ) )
return( PSA_ERROR_NOT_PERMITTED );
if( ( export_public_key ) && ( !( PSA_KEY_TYPE_IS_PUBLIC_KEY( slot->type )
|| PSA_KEY_TYPE_IS_KEYPAIR( slot->type ) ) ) )
if( export_public_key && !( PSA_KEY_TYPE_IS_PUBLIC_KEY( slot->type ) ||
PSA_KEY_TYPE_IS_KEYPAIR( slot->type ) ) )
return( PSA_ERROR_INVALID_ARGUMENT );
if( PSA_KEY_TYPE_IS_RAW_BYTES( slot->type ) )

View File

@ -580,7 +580,6 @@ void import_export_public_key( char *hex,
if( status != PSA_SUCCESS )
goto destroy;
TEST_ASSERT( exported_length == (size_t) public_key_expected_length );
destroy: