From 59061aebec978377ec65ab85d5831e385ae1aa61 Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 2 Jul 2025 14:58:11 -0700 Subject: [PATCH] Fix issue with benchmark help options and descriptions not lining up due to new `-aead_set_key` added in #8160 on April 14, 2025. --- wolfcrypt/benchmark/benchmark.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/benchmark/benchmark.c b/wolfcrypt/benchmark/benchmark.c index 352f600e4..98c431783 100644 --- a/wolfcrypt/benchmark/benchmark.c +++ b/wolfcrypt/benchmark/benchmark.c @@ -15141,9 +15141,10 @@ static void Usage(void) e += 3; #endif printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -dgst_full */ - printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -mca_final */ + printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -mac_final */ + printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -aead_set_key */ #ifndef NO_RSA - printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -ras_sign */ + printf("%s", bench_Usage_msg1[lng_index][e++]); /* option -rsa_sign */ #ifdef WOLFSSL_KEY_GEN printf("%s", bench_Usage_msg1[lng_index][e]); /* option -rsa-sz */ #endif