From 7313d1e6b080d78718af34bc371bf58a012a8e61 Mon Sep 17 00:00:00 2001 From: Pascal Brand Date: Mon, 29 Jun 2015 16:26:42 +0200 Subject: [PATCH] Update ECC timing tests Signed-off-by: Pascal Brand --- testprof/x86_prof.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/testprof/x86_prof.c b/testprof/x86_prof.c index 2227597..aa7e86c 100644 --- a/testprof/x86_prof.c +++ b/testprof/x86_prof.c @@ -1171,28 +1171,28 @@ void time_ecc(void) unsigned long i, w, x, y, z; int err, stat; static unsigned long sizes[] = { -#ifdef ECC112 +#ifdef LTC_ECC112 112/8, #endif -#ifdef ECC128 +#ifdef LTC_ECC128 128/8, #endif -#ifdef ECC160 +#ifdef LTC_ECC160 160/8, #endif -#ifdef ECC192 +#ifdef LTC_ECC192 192/8, #endif -#ifdef ECC224 +#ifdef LTC_ECC224 224/8, #endif -#ifdef ECC256 +#ifdef LTC_ECC256 256/8, #endif -#ifdef ECC384 +#ifdef LTC_ECC384 384/8, #endif -#ifdef ECC521 +#ifdef LTC_ECC521 521/8, #endif 100000};