Skip to content

Commit f77a6ac

Browse files
Fix indentation
1 parent 4b73422 commit f77a6ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

library/psa_crypto.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,7 @@ psa_status_t psa_copy_key( psa_key_handle_t source_handle,
17381738
psa_se_drv_table_entry_t *driver = NULL;
17391739

17401740
status = psa_get_transparent_key( source_handle, &source_slot,
1741-
PSA_KEY_USAGE_COPY, 0 );
1741+
PSA_KEY_USAGE_COPY, 0 );
17421742
if( status != PSA_SUCCESS )
17431743
goto exit;
17441744

@@ -5332,8 +5332,8 @@ psa_status_t psa_key_derivation_input_key(
53325332
psa_key_slot_t *slot;
53335333
psa_status_t status;
53345334
status = psa_get_transparent_key( handle, &slot,
5335-
PSA_KEY_USAGE_DERIVE,
5336-
operation->alg );
5335+
PSA_KEY_USAGE_DERIVE,
5336+
operation->alg );
53375337
if( status != PSA_SUCCESS )
53385338
return( status );
53395339
if( slot->type != PSA_KEY_TYPE_DERIVE )
@@ -5481,7 +5481,7 @@ psa_status_t psa_key_derivation_key_agreement( psa_key_derivation_operation_t *o
54815481
if( ! PSA_ALG_IS_KEY_AGREEMENT( operation->alg ) )
54825482
return( PSA_ERROR_INVALID_ARGUMENT );
54835483
status = psa_get_transparent_key( private_key, &slot,
5484-
PSA_KEY_USAGE_DERIVE, operation->alg );
5484+
PSA_KEY_USAGE_DERIVE, operation->alg );
54855485
if( status != PSA_SUCCESS )
54865486
return( status );
54875487
status = psa_key_agreement_internal( operation, step,
@@ -5509,7 +5509,7 @@ psa_status_t psa_raw_key_agreement( psa_algorithm_t alg,
55095509
goto exit;
55105510
}
55115511
status = psa_get_transparent_key( private_key, &slot,
5512-
PSA_KEY_USAGE_DERIVE, alg );
5512+
PSA_KEY_USAGE_DERIVE, alg );
55135513
if( status != PSA_SUCCESS )
55145514
goto exit;
55155515

0 commit comments

Comments
 (0)