Skip to content

Commit 3958ac4

Browse files
committed
improve performance (use Gcd31 instead of Gcd63) and safety (arg check)
1 parent 8203d7a commit 3958ac4

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

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

+19-11
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
import org.apache.logging.log4j.LogManager;
2121

2222
import de.tilman_neumann.jml.factor.FactorAlgorithm;
23-
import de.tilman_neumann.jml.gcd.Gcd63;
23+
import de.tilman_neumann.jml.gcd.Gcd31;
2424

2525
/**
26-
* 31-bit implementation of Pollard' Rho method.
26+
* 31-bit implementation of Pollard's Rho method.
2727
*
2828
* @author Tilman Neumann
2929
*/
@@ -32,21 +32,29 @@ public class PollardRho31 extends FactorAlgorithm {
3232
private static final boolean DEBUG = false;
3333
private static final SecureRandom RNG = new SecureRandom();
3434

35-
private Gcd63 gcdEngine = new Gcd63();
36-
37-
/** factor argument converted to int */
35+
private Gcd31 gcdEngine = new Gcd31();
36+
37+
/** absolute value of the number to factor */
3838
private int n;
39-
39+
4040
@Override
4141
public String getName() {
4242
return "PollardRho31";
4343
}
4444

4545
@Override
4646
public BigInteger findSingleFactor(BigInteger N) {
47-
this.n = N.intValue();
47+
if (N.bitLength() > 31) { // this check should be negligible in terms of performance
48+
throw new IllegalArgumentException("N = " + N + " has " + N.bitLength() + " bit, but PollardRho31 only supports arguments <= 31 bit");
49+
}
50+
int factorInt = findSingleFactor(N.intValue());
51+
return BigInteger.valueOf(factorInt);
52+
}
53+
54+
public int findSingleFactor(int nOriginal) {
55+
this.n = nOriginal<0 ? -nOriginal : nOriginal; // RNG.nextInt(n) below would crash for negative arguments
4856

49-
long gcd;
57+
int gcd;
5058
long x = RNG.nextInt(n); // uniform random int from [0, n)
5159
long xx = x;
5260
do {
@@ -55,11 +63,11 @@ public BigInteger findSingleFactor(BigInteger N) {
5563
x = addModN(squareModN(x), c);
5664
xx = addModN(squareModN(xx), c);
5765
xx = addModN(squareModN(xx), c);
58-
gcd = gcdEngine.gcd(x-xx, n);
66+
gcd = gcdEngine.gcd((int)(x-xx), n);
5967
} while(gcd==1);
6068
} while (gcd==n); // leave loop if factor found; otherwise continue with a new random c
61-
if (DEBUG) LOG.debug("Found factor of " + N + " = " + gcd);
62-
return BigInteger.valueOf(gcd);
69+
if (DEBUG) LOG.debug("Found factor of " + nOriginal + " = " + gcd);
70+
return gcd;
6371
}
6472

6573
/**

0 commit comments

Comments
 (0)