mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-01 10:06:53 +03:00
psa_generate_key(): return PSA_ERROR_INVALID_ARGUMENT for public key
Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
@ -5703,6 +5703,10 @@ psa_status_t psa_generate_key( const psa_key_attributes_t *attributes,
|
|||||||
if( psa_get_key_bits( attributes ) == 0 )
|
if( psa_get_key_bits( attributes ) == 0 )
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
|
||||||
|
/* Reject any attempt to create a public key. */
|
||||||
|
if( PSA_KEY_TYPE_IS_PUBLIC_KEY(attributes->core.type) )
|
||||||
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
|
||||||
status = psa_start_key_creation( PSA_KEY_CREATION_GENERATE, attributes,
|
status = psa_start_key_creation( PSA_KEY_CREATION_GENERATE, attributes,
|
||||||
&slot, &driver );
|
&slot, &driver );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
|
Reference in New Issue
Block a user