mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 10:20:36 +00:00
Minor formatting change to driver wrapper jinja template
Signed-off-by: Aditya Deshpande <aditya.deshpande@arm.com>
This commit is contained in:
parent
f100f00679
commit
ebd624e691
@ -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 );
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user