20
20
import org .apache .logging .log4j .LogManager ;
21
21
22
22
import de .tilman_neumann .jml .factor .FactorAlgorithm ;
23
- import de .tilman_neumann .jml .gcd .Gcd63 ;
23
+ import de .tilman_neumann .jml .gcd .Gcd31 ;
24
24
25
25
/**
26
- * 31-bit implementation of Pollard' Rho method.
26
+ * 31-bit implementation of Pollard's Rho method.
27
27
*
28
28
* @author Tilman Neumann
29
29
*/
@@ -32,21 +32,29 @@ public class PollardRho31 extends FactorAlgorithm {
32
32
private static final boolean DEBUG = false ;
33
33
private static final SecureRandom RNG = new SecureRandom ();
34
34
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 */
38
38
private int n ;
39
-
39
+
40
40
@ Override
41
41
public String getName () {
42
42
return "PollardRho31" ;
43
43
}
44
44
45
45
@ Override
46
46
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
48
56
49
- long gcd ;
57
+ int gcd ;
50
58
long x = RNG .nextInt (n ); // uniform random int from [0, n)
51
59
long xx = x ;
52
60
do {
@@ -55,11 +63,11 @@ public BigInteger findSingleFactor(BigInteger N) {
55
63
x = addModN (squareModN (x ), c );
56
64
xx = addModN (squareModN (xx ), c );
57
65
xx = addModN (squareModN (xx ), c );
58
- gcd = gcdEngine .gcd (x -xx , n );
66
+ gcd = gcdEngine .gcd (( int )( x -xx ) , n );
59
67
} while (gcd ==1 );
60
68
} 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 ;
63
71
}
64
72
65
73
/**
0 commit comments