fixed ecc_test.c

luckily gcc 4.6 of travis CI complained!

shame on you gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1)
This commit is contained in:
Steffen Jaeckel 2014-07-17 12:08:30 +02:00
parent 48bd6702aa
commit 3cda802deb

View File

@ -3,28 +3,28 @@
#ifdef LTC_MECC
static unsigned int sizes[] = {
#ifdef ECC112
#ifdef LTC_ECC112
14,
#endif
#ifdef ECC128
#ifdef LTC_ECC128
16,
#endif
#ifdef ECC160
#ifdef LTC_ECC160
20,
#endif
#ifdef ECC192
#ifdef LTC_ECC192
24,
#endif
#ifdef ECC224
#ifdef LTC_ECC224
28,
#endif
#ifdef ECC256
#ifdef LTC_ECC256
32,
#endif
#ifdef ECC384
#ifdef LTC_ECC384
48,
#endif
#ifdef ECC521
#ifdef LTC_ECC521
65
#endif
};