Remove useless braces in psa_crypto_pake.c

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-06-08 13:36:12 +02:00
parent c29f8477e2
commit 5282393091

View file

@ -119,9 +119,7 @@ psa_status_t psa_pake_setup( psa_pake_operation_t *operation,
{
/* A context must be freshly initialized before it can be set up. */
if( operation->alg != 0 || operation->state != PSA_PAKE_STATE_INVALID )
{
return( PSA_ERROR_BAD_STATE );
}
if( cipher_suite == NULL ||
PSA_ALG_IS_PAKE(cipher_suite->algorithm ) == 0 ||
@ -448,10 +446,8 @@ psa_status_t psa_pake_output( psa_pake_operation_t *operation,
length = operation->buffer[0] + 1;
}
else
{
/* Length is stored at the first byte of the next chunk */
length = operation->buffer[operation->buffer_offset] + 1;
}
if( length > operation->buffer_length )
return( PSA_ERROR_DATA_CORRUPT );
@ -484,9 +480,7 @@ psa_status_t psa_pake_output( psa_pake_operation_t *operation,
operation->sequence = 0;
}
else
{
operation->sequence++;
}
return( PSA_SUCCESS );
#else
@ -639,9 +633,7 @@ psa_status_t psa_pake_input( psa_pake_operation_t *operation,
operation->sequence = 0;
}
else
{
operation->sequence++;
}
return( PSA_SUCCESS );
#else