aboutsummaryrefslogtreecommitdiff
path: root/tests/suites/test_suite_psa_crypto_hash.function
diff options
context:
space:
mode:
authorGilles Peskine <Gilles.Peskine@arm.com>2018-12-17 23:35:42 +0100
committerGilles Peskine <Gilles.Peskine@arm.com>2018-12-20 18:47:52 +0100
commit0f915f1d2a53cd390224376b6365f73fe58868a6 (patch)
tree9240c07fe9f97e89673270d2b6643373e4a9282b /tests/suites/test_suite_psa_crypto_hash.function
parent9d8eea7e19a625e5e061007162343d7ee1b36970 (diff)
downloadmbedtls-0f915f1d2a53cd390224376b6365f73fe58868a6.zip
mbedtls-0f915f1d2a53cd390224376b6365f73fe58868a6.tar.gz
mbedtls-0f915f1d2a53cd390224376b6365f73fe58868a6.tar.bz2
Indent PSA tests according to K&R rules with Mbed TLS tweaks
Only whitespace changes in this commit.
Diffstat (limited to 'tests/suites/test_suite_psa_crypto_hash.function')
-rw-r--r--tests/suites/test_suite_psa_crypto_hash.function4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/suites/test_suite_psa_crypto_hash.function b/tests/suites/test_suite_psa_crypto_hash.function
index 14e6a97..bed80e2 100644
--- a/tests/suites/test_suite_psa_crypto_hash.function
+++ b/tests/suites/test_suite_psa_crypto_hash.function
@@ -15,7 +15,7 @@
* END_DEPENDENCIES
*/
- /* BEGIN_CASE */
+/* BEGIN_CASE */
void hash_finish( int alg_arg, data_t *input, data_t *expected_hash )
{
psa_algorithm_t alg = alg_arg;
@@ -80,7 +80,7 @@ void hash_multi_part( int alg_arg, data_t *input, data_t *expected_hash )
input->x, len ) == PSA_SUCCESS );
TEST_ASSERT( psa_hash_update( &operation,
input->x + len, input->len - len ) ==
- PSA_SUCCESS );
+ PSA_SUCCESS );
TEST_ASSERT( psa_hash_finish( &operation,
actual_hash, sizeof( actual_hash ),