From 1f98736e71c87164a649f715d0349bf162551f3c Mon Sep 17 00:00:00 2001 From: Thomas Daubney Date: Fri, 28 Jul 2023 15:23:06 +0100 Subject: [PATCH] Add clarifying comment to new program section Mark the beginning of the section that prints the result with a comment. Signed-off-by: Thomas Daubney --- programs/psa/psa_hash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/psa/psa_hash.c b/programs/psa/psa_hash.c index a2e2731a98..81110f0b78 100644 --- a/programs/psa/psa_hash.c +++ b/programs/psa/psa_hash.c @@ -144,6 +144,7 @@ int main(void) mbedtls_printf("One-shot hash operation successful!\n\n"); + /* Print out result */ mbedtls_printf("The SHA-256( '%s' ) is: ", buf); for (size_t j = 0; j < test_sha256_hash_len; j++) {