From 28dcef2d71d453fbbc012861d58610dadb2ce55a Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 2 Nov 2015 09:39:34 -0800 Subject: [PATCH] gcm benchmark results format alignment --- wolfcrypt/benchmark/benchmark.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wolfcrypt/benchmark/benchmark.c b/wolfcrypt/benchmark/benchmark.c index 3f709522c..436c4cf7f 100644 --- a/wolfcrypt/benchmark/benchmark.c +++ b/wolfcrypt/benchmark/benchmark.c @@ -483,11 +483,12 @@ void bench_aesgcm(void) persec = persec / 1024; #endif - printf("AES-GCM Encrypt %d %s took %5.3f seconds, %8.3f MB/s", numBlocks, + printf("AES-GCM %d %s took %5.3f seconds, %8.3f MB/s", numBlocks, blockType, total, persec); SHOW_INTEL_CYCLES printf("\n"); +#if 0 start = current_time(1); BEGIN_INTEL_CYCLES @@ -508,6 +509,7 @@ void bench_aesgcm(void) blockType, total, persec); SHOW_INTEL_CYCLES printf("\n"); +#endif } #endif