From 67b9cd8a9576268899479a72d82b2dcafd2224ed Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 2 Sep 2014 02:17:43 +0200 Subject: [PATCH] trim trailing spaces --- src/misc/crypt/crypt.c | 1 - src/pk/ecc/ecc_test.c | 2 +- src/pk/ecc/ltc_ecc_mulmod.c | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/misc/crypt/crypt.c b/src/misc/crypt/crypt.c index a5fbbca..61f4f84 100644 --- a/src/misc/crypt/crypt.c +++ b/src/misc/crypt/crypt.c @@ -393,7 +393,6 @@ const char *crypt_build_settings = " LTC_ECC_SHAMIR " #endif "\n" - "\n\n\n" ; diff --git a/src/pk/ecc/ecc_test.c b/src/pk/ecc/ecc_test.c index 873e70b..e371da9 100644 --- a/src/pk/ecc/ecc_test.c +++ b/src/pk/ecc/ecc_test.c @@ -19,7 +19,7 @@ /** @file ecc_test.c ECC Crypto, Tom St Denis -*/ +*/ #ifdef LTC_MECC diff --git a/src/pk/ecc/ltc_ecc_mulmod.c b/src/pk/ecc/ltc_ecc_mulmod.c index 28eebdc..c3e7cc5 100644 --- a/src/pk/ecc/ltc_ecc_mulmod.c +++ b/src/pk/ecc/ltc_ecc_mulmod.c @@ -62,7 +62,7 @@ int ltc_ecc_mulmod(void *k, ecc_point *G, ecc_point *R, void *modulus, int map) mp_clear(mu); return err; } - + /* alloc ram for window temps */ for (i = 0; i < 8; i++) { M[i] = ltc_ecc_new_point(); @@ -92,7 +92,7 @@ int ltc_ecc_mulmod(void *k, ecc_point *G, ecc_point *R, void *modulus, int map) } mp_clear(mu); mu = NULL; - + /* calc the M tab, which holds kG for k==8..15 */ /* M[0] == 8G */ if ((err = ltc_mp.ecc_ptdbl(tG, M[0], modulus, mp)) != CRYPT_OK) { goto done; }