From 7f701ca194078932a14ae8fef8a16c48d4987a2a Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 7 Jan 2013 14:08:56 -0800 Subject: [PATCH] align RSA benchmark buffer --- ctaocrypt/benchmark/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctaocrypt/benchmark/benchmark.c b/ctaocrypt/benchmark/benchmark.c index fa3bc62f7..f7f53228e 100644 --- a/ctaocrypt/benchmark/benchmark.c +++ b/ctaocrypt/benchmark/benchmark.c @@ -435,8 +435,8 @@ void bench_rsa(void) word32 idx = 0; byte message[] = "Everyone gets Friday off."; - byte enc[512]; /* for up to 4096 bit */ byte* output; + byte enc[512]; /* for up to 4096 bit */ const int len = (int)strlen((char*)message); double start, total, each, milliEach;