From d8453bb1848e8f7575d1447ea342cd5ec817c13c Mon Sep 17 00:00:00 2001 From: Thomas Daubney Date: Wed, 11 Oct 2023 15:29:02 +0100 Subject: [PATCH] Remove superfluous comment Signed-off-by: Thomas Daubney --- programs/psa/psa_hash.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/programs/psa/psa_hash.c b/programs/psa/psa_hash.c index c75972249..18fefeddc 100644 --- a/programs/psa/psa_hash.c +++ b/programs/psa/psa_hash.c @@ -97,8 +97,6 @@ int main(void) return EXIT_FAILURE; } - /* Note: Here we use sizeof(sample_message) - 1 since we don't wish to - * include the null byte in the hash computation */ status = psa_hash_update(&hash_operation, sample_message, sample_message_length); if (status != PSA_SUCCESS) { mbedtls_printf("psa_hash_update failed\n");