@@ -34,7 +34,7 @@ public class PollardRhoBrent31 extends FactorAlgorithm {
34
34
private static final boolean DEBUG = false ;
35
35
private static final SecureRandom RNG = new SecureRandom ();
36
36
37
- private int N ;
37
+ private int n ;
38
38
39
39
private Gcd31 gcd = new Gcd31 ();
40
40
@@ -45,17 +45,21 @@ public String getName() {
45
45
46
46
@ Override
47
47
public BigInteger findSingleFactor (BigInteger N ) {
48
- return BigInteger .valueOf (findSingleFactor (N .intValue ()));
48
+ if (N .bitLength () > 31 ) { // this check should be negligible in terms of performance
49
+ throw new IllegalArgumentException ("N = " + N + " has " + N .bitLength () + " bit, but PollardRho31 only supports arguments <= 31 bit" );
50
+ }
51
+ int factorInt = findSingleFactor (N .intValue ());
52
+ return BigInteger .valueOf (factorInt );
49
53
}
50
54
51
- public int findSingleFactor (int N ) {
52
- this .N = N ;
55
+ public int findSingleFactor (int nOriginal ) {
56
+ this .n = nOriginal < 0 ? - nOriginal : nOriginal ; // RNG.nextInt(n) below would crash for negative arguments
53
57
int G ;
54
58
int ys , x ;
55
59
do {
56
60
// start with random x0, c from [0, N-1]
57
- int c = RNG .nextInt (N );
58
- int x0 = RNG .nextInt (N );
61
+ int c = RNG .nextInt (n );
62
+ int x0 = RNG .nextInt (n );
59
63
int y = x0 ;
60
64
61
65
// Brent: "The probability of the algorithm failing because q_i=0 increases, so it is best not to choose m too large"
@@ -74,26 +78,26 @@ public int findSingleFactor(int N) {
74
78
for (int i =1 ; i <=iMax ; i ++) {
75
79
y = addModN (squareModN (y ), c );
76
80
final long diff = x <y ? y -x : x -y ;
77
- q = (int ) ((diff *q ) % N );
81
+ q = (int ) ((diff *q ) % n );
78
82
}
79
- G = gcd .gcd (q , N );
83
+ G = gcd .gcd (q , n );
80
84
// if q==0 then G==N -> the loop will be left and restarted with new x0, c
81
85
k += m ;
82
86
if (DEBUG ) LOG .debug ("r = " + r + ", k = " + k );
83
87
} while (k <r && G ==1 );
84
88
r <<= 1 ;
85
89
if (DEBUG ) LOG .debug ("r = " + r + ", G = " + G );
86
90
} while (G ==1 );
87
- if (G ==N ) {
91
+ if (G ==n ) {
88
92
do {
89
93
ys = addModN (squareModN (ys ), c );
90
94
int diff = x <ys ? ys -x : x -ys ;
91
- G = gcd .gcd (diff , N );
95
+ G = gcd .gcd (diff , n );
92
96
} while (G ==1 );
93
97
if (DEBUG ) LOG .debug ("G = " + G );
94
98
}
95
- } while (G ==N );
96
- if (DEBUG ) LOG .debug ("Found factor of " + N + " = " + G );
99
+ } while (G ==n );
100
+ if (DEBUG ) LOG .debug ("Found factor of " + nOriginal + " = " + G );
97
101
return G ;
98
102
}
99
103
@@ -104,8 +108,8 @@ public int findSingleFactor(int N) {
104
108
* @return (a+b) mod N
105
109
*/
106
110
private int addModN (int a , int b ) {
107
- int sum = a + b ;
108
- return sum <N ? sum : sum -N ;
111
+ long sum = a + ( long ) b ; // long is needed for the addition of 31 bit numbers
112
+ return ( int ) ( sum <n ? sum : sum -n ) ;
109
113
}
110
114
111
115
/**
@@ -114,6 +118,6 @@ private int addModN(int a, int b) {
114
118
* @return
115
119
*/
116
120
private int squareModN (long x ) {
117
- return (int ) ((x * x ) % N );
121
+ return (int ) ((x * x ) % n );
118
122
}
119
123
}
0 commit comments