Minor formatting change to driver wrapper jinja template

Signed-off-by: Aditya Deshpande <aditya.deshpande@arm.com>
This commit is contained in:
Aditya Deshpande 2023-03-21 15:23:07 +00:00
parent f100f00679
commit ebd624e691

View File

@ -324,14 +324,14 @@ psa_status_t psa_driver_wrapper_sign_hash(
attributes->core.bits == 256 ) attributes->core.bits == 256 )
{ {
status = p256_transparent_sign_hash( attributes, status = p256_transparent_sign_hash( attributes,
key_buffer, key_buffer,
key_buffer_size, key_buffer_size,
alg, alg,
hash, hash,
hash_length, hash_length,
signature, signature,
signature_size, signature_size,
signature_length ); signature_length );
if( status != PSA_ERROR_NOT_SUPPORTED ) if( status != PSA_ERROR_NOT_SUPPORTED )
return( status ); return( status );
} }
@ -428,13 +428,13 @@ psa_status_t psa_driver_wrapper_verify_hash(
attributes->core.bits == 256 ) attributes->core.bits == 256 )
{ {
status = p256_transparent_verify_hash( attributes, status = p256_transparent_verify_hash( attributes,
key_buffer, key_buffer,
key_buffer_size, key_buffer_size,
alg, alg,
hash, hash,
hash_length, hash_length,
signature, signature,
signature_length ); signature_length );
if( status != PSA_ERROR_NOT_SUPPORTED ) if( status != PSA_ERROR_NOT_SUPPORTED )
return( status ); return( status );
} }
@ -859,9 +859,9 @@ psa_status_t psa_driver_wrapper_generate_key(
attributes->core.bits == 256 ) attributes->core.bits == 256 )
{ {
status = p256_transparent_generate_key( attributes, status = p256_transparent_generate_key( attributes,
key_buffer, key_buffer,
key_buffer_size, key_buffer_size,
key_buffer_length ); key_buffer_length );
if( status != PSA_ERROR_NOT_SUPPORTED ) if( status != PSA_ERROR_NOT_SUPPORTED )
break; break;
} }
@ -2812,14 +2812,14 @@ psa_status_t psa_driver_wrapper_key_agreement(
attributes->core.bits == 256 ) attributes->core.bits == 256 )
{ {
status = p256_transparent_key_agreement( attributes, status = p256_transparent_key_agreement( attributes,
key_buffer, key_buffer,
key_buffer_size, key_buffer_size,
alg, alg,
peer_key, peer_key,
peer_key_length, peer_key_length,
shared_secret, shared_secret,
shared_secret_size, shared_secret_size,
shared_secret_length ); shared_secret_length );
if( status != PSA_ERROR_NOT_SUPPORTED) if( status != PSA_ERROR_NOT_SUPPORTED)
return( status ); return( status );
} }