Fix code style
Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 6112f0d..78737fd 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -2350,9 +2350,9 @@
}
static psa_status_t psa_hash_finish_internal(psa_hash_operation_t *operation,
- uint8_t *hash,
- size_t hash_size,
- size_t *hash_length)
+ uint8_t *hash,
+ size_t hash_size,
+ size_t *hash_length)
{
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
@@ -2440,7 +2440,7 @@
LOCAL_INPUT_ALLOC(input_external, input_length, input);
LOCAL_OUTPUT_ALLOC(hash_external, hash_size, hash);
status = psa_driver_wrapper_hash_compute(alg, input, input_length,
- hash, hash_size, hash_length);
+ hash, hash_size, hash_length);
#if defined(MBEDTLS_PSA_COPY_CALLER_BUFFERS)
exit: