Skip to content

Commit 427d459

Browse files
committed
use squareAddModN()
1 parent 90f731d commit 427d459

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

src/main/java/de/tilman_neumann/jml/factor/pollardRho/PollardRho.java

+13-11
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
* get unlucky, it could be equal to N. By randomly choosing a and b each time, we
4141
* ensure that we never get too unlucky.
4242
*
43+
* Improvement by Dave McGuigan:
44+
* Use squareAddModN() instead of nested addModN(squareModN())
45+
*
4346
* @author Tilman Neumann
4447
*/
4548
public class PollardRho extends FactorAlgorithm {
@@ -70,9 +73,9 @@ public BigInteger findSingleFactor(BigInteger N) {
7073
if (c.compareTo(N)>=0) c=c.subtract(N);
7174

7275
do {
73-
x = addModN( x.multiply(x) .mod(N), c);
74-
xx = addModN(xx.multiply(xx).mod(N), c);
75-
xx = addModN(xx.multiply(xx).mod(N), c);
76+
x = squareAddModN( x, c);
77+
xx = squareAddModN(xx, c);
78+
xx = squareAddModN(xx, c);
7679
gcd = x.subtract(xx).gcd(N);
7780
} while(gcd.equals(I_1));
7881

@@ -81,15 +84,14 @@ public BigInteger findSingleFactor(BigInteger N) {
8184
if (DEBUG) LOG.debug("Found factor of " + N + " = " + gcd);
8285
return gcd;
8386
}
84-
87+
8588
/**
86-
* Addition modulo N, with <code>a, b < N</code>.
87-
* @param a
88-
* @param b
89-
* @return (a+b) mod N
89+
* Square and add modulo N, with <code>a, b < N</code>.
90+
* @param y
91+
* @param c
92+
* @return () mod N
9093
*/
91-
private BigInteger addModN(BigInteger a, BigInteger b) {
92-
BigInteger sum = a.add(b);
93-
return sum.compareTo(N)<0 ? sum : sum.subtract(N);
94+
private BigInteger squareAddModN(BigInteger y, BigInteger c) {
95+
return y.multiply(y).add(c).mod(N);
9496
}
9597
}

src/main/java/de/tilman_neumann/jml/factor/pollardRho/PollardRhoBrent.java

+13-11
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
/**
2727
* Brents's improvement of Pollard's Rho algorithm, following [Richard P. Brent: An improved Monte Carlo Factorization Algorithm, 1980].
2828
*
29+
* Improvement by Dave McGuigan:
30+
* Use squareAddModN() instead of nested addModN(squareModN())
31+
*
2932
* @author Tilman Neumann
3033
*/
3134
public class PollardRhoBrent extends FactorAlgorithm {
@@ -60,14 +63,14 @@ public BigInteger findSingleFactor(BigInteger N) {
6063
do {
6164
x = y;
6265
for (int i=1; i<=r; i++) {
63-
y = addModN(y.multiply(y).mod(N), c);
66+
y = squareAddModN(y, c);
6467
}
6568
int k = 0;
6669
do {
6770
ys = y;
6871
final int iMax = Math.min(m, r-k);
6972
for (int i=1; i<=iMax; i++) {
70-
y = addModN(y.multiply(y).mod(N), c);
73+
y = squareAddModN(y, c);
7174
final BigInteger diff = x.compareTo(y) < 0 ? y.subtract(x) : x.subtract(y);
7275
q = diff.multiply(q).mod(N);
7376
}
@@ -81,7 +84,7 @@ public BigInteger findSingleFactor(BigInteger N) {
8184
} while (G.equals(I_1));
8285
if (G.equals(N)) {
8386
do {
84-
ys = addModN(ys.multiply(ys).mod(N), c);
87+
ys = squareAddModN(ys, c);
8588
final BigInteger diff = x.compareTo(ys) < 0 ? ys.subtract(x) : x.subtract(ys);
8689
G = diff.gcd(N);
8790
} while (G.equals(I_1));
@@ -91,15 +94,14 @@ public BigInteger findSingleFactor(BigInteger N) {
9194
if (DEBUG) LOG.debug("Found factor of " + N + " = " + G);
9295
return G;
9396
}
94-
97+
9598
/**
96-
* Addition modulo N, with <code>a, b < N</code>.
97-
* @param a
98-
* @param b
99-
* @return (a+b) mod N
99+
* Square and add modulo N, with <code>a, b < N</code>.
100+
* @param y
101+
* @param c
102+
* @return () mod N
100103
*/
101-
private BigInteger addModN(BigInteger a, BigInteger b) {
102-
BigInteger sum = a.add(b);
103-
return sum.compareTo(N)<0 ? sum : sum.subtract(N);
104+
private BigInteger squareAddModN(BigInteger y, BigInteger c) {
105+
return y.multiply(y).add(c).mod(N);
104106
}
105107
}

0 commit comments

Comments
 (0)