aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-13 08:31:30 +0000
committerlloyd <[email protected]>2010-03-13 08:31:30 +0000
commit6e54f05f0afe0bc7d37f30e3d15d0368a0482b7f (patch)
treecab77bee8cfc23f6b842b28fb8259ceaa822f1c8 /src/math
parentd9c2b170d59f7d7a918580bc55f405b4c1bc83dd (diff)
Small optimizations
Especially try to keep the size of inputs down, so it doesn't have to do an extra reduction step. Ideally this should be eliminated entirely.
Diffstat (limited to 'src/math')
-rw-r--r--src/math/numbertheory/point_gfp.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/math/numbertheory/point_gfp.cpp b/src/math/numbertheory/point_gfp.cpp
index 723fb473b..ed9c0acc8 100644
--- a/src/math/numbertheory/point_gfp.cpp
+++ b/src/math/numbertheory/point_gfp.cpp
@@ -57,9 +57,6 @@ BigInt PointGFp::monty_mult(const BigInt& a, const BigInt& b)
BigInt a2 = mod_p.reduce(a);
BigInt b2 = mod_p.reduce(b);
- a2.grow_to(p_size);
- b2.grow_to(p_size);
-
bigint_simple_mul(t, a2.data(), a2.sig_words(), b2.data(), b2.sig_words());
}
@@ -117,9 +114,14 @@ PointGFp& PointGFp::operator+=(const PointGFp& rhs)
BigInt x = mod_p.reduce(monty_mult(r, r) - S2 - U2*2);
- U2 = mod_p.reduce(U2 - x);
+ U2 -= x;
+ if(U2.is_negative())
+ U2 += curve.get_p();
BigInt y = monty_mult(r, U2) - monty_mult(S1, S2);
+ if(y.is_negative())
+ y += curve.get_p();
+
BigInt z = monty_mult(monty_mult(coord_z, rhs.coord_z), H);
coord_x = x;
@@ -225,13 +227,18 @@ void PointGFp::mult2()
BigInt M = mod_p.reduce(a_z4 + 3 * monty_mult(coord_x, coord_x));
- BigInt x = monty_mult(M, M) - 2*S;
+ BigInt x = mod_p.reduce(monty_mult(M, M) - 2*S);
- BigInt U = 8 * monty_mult(y_2, y_2);
+ BigInt U = mod_p.reduce(monty_mult(y_2, y_2) << 3);
BigInt y = monty_mult(M, S - x) - U;
+ if(y.is_negative())
+ y += curve.get_p();
+
BigInt z = 2 * monty_mult(coord_y, coord_z);
+ if(z >= curve.get_p())
+ z -= curve.get_p();
coord_x = x;
coord_y = y;