summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-03-14 05:02:35 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-03-14 05:02:35 +0100
commit0f4ce2313cbdb13bb1f565ea64d1ae7f3b4bd13c (patch)
tree0ea3bc23e9e054b06a28937d7381d3d716c9eb61 /src
parent6c37af4a76a58f1b879d0c6df465cf01ae5f9e5d (diff)
downloadlibuecc-0f4ce2313cbdb13bb1f565ea64d1ae7f3b4bd13c.tar
libuecc-0f4ce2313cbdb13bb1f565ea64d1ae7f3b4bd13c.zip
Formatting improvements
Diffstat (limited to 'src')
-rw-r--r--src/ec25519.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ec25519.c b/src/ec25519.c
index 7887f61..6458d2d 100644
--- a/src/ec25519.c
+++ b/src/ec25519.c
@@ -342,7 +342,8 @@ static void recip(unsigned int out[32], const unsigned int z[32]) {
void ecc_25519_load(ecc_25519_work *out, const ecc_public_key_256 *in) {
int i;
- unsigned int X2[32], d_X2[32] = {0x04, 0x6d, 0x07} /* 486660 */, a_X2[32] = {0x08, 0x6d, 0x07} /* 486664 */, _1_a_X2[32], d_X2_a_X2[32], Y[32], Yt[32];
+ unsigned int X2[32], _1_a_X2[32], d_X2_a_X2[32], Y[32], Yt[32];
+ unsigned int d_X2[32] = {0x04, 0x6d, 0x07} /* 486660 */, a_X2[32] = {0x08, 0x6d, 0x07} /* 486664 */;
for (i = 0; i < 32; i++) {
out->X[i] = in->p[i];