Formatting fixes for psa_crypto.c
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
81231f33f0
commit
bbe90b5f7f
1 changed files with 3 additions and 3 deletions
|
@ -3372,8 +3372,8 @@ psa_status_t psa_aead_generate_nonce( psa_aead_operation_t *operation,
|
|||
goto exit;
|
||||
}
|
||||
|
||||
required_nonce_size = PSA_AEAD_NONCE_LENGTH(operation->key_type,
|
||||
operation->alg);
|
||||
required_nonce_size = PSA_AEAD_NONCE_LENGTH( operation->key_type,
|
||||
operation->alg );
|
||||
|
||||
if( nonce_size < required_nonce_size )
|
||||
{
|
||||
|
@ -3577,7 +3577,7 @@ exit:
|
|||
}
|
||||
|
||||
/* Abort an AEAD operation. */
|
||||
psa_status_t psa_aead_abort(psa_aead_operation_t *operation)
|
||||
psa_status_t psa_aead_abort( psa_aead_operation_t *operation )
|
||||
{
|
||||
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||
|
||||
|
|
Loading…
Reference in a new issue