2012/097: useless factorization algorithm
Posted by:
djb (IP Logged)
Date: 29 February 2012 11:31
2012/097 finds a divisor p of n by computing gcd{n,x1}, gcd{n,x2}, ... for a particular pattern of random-looking integers x1,x2,...
All of the numerical evidence collected in the paper is consistent with the idea that each of these integers has about 1/p chance of finding p, for a total cost of essentially p to find p. This isn't even as fast as trial division. It's a giant step backwards from the rho method, ECM, etc., which take far fewer than p operations to find p once p is moderately large.
The paper provides no reason to believe that its method is of any use. The paper claims that its "FAC(n,1)" is surprisingly small compared to p, but the number of operations in the algorithm is essentially quadratic in FAC(n,1). The "FAC(n,a)" algorithm is non-uniform, and again the paper provides no reason to think it is better than random guessing. One might as well generate the x values as AES outputs.
---D. J. Bernstein
Research Professor, Computer Science, University of Illinois at Chicago