Pascal Molin on Thu, 03 Apr 2014 15:22:15 +0200 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
index calculus vs pollard rho |
gp > p=nextprime(2^120); znlog(Mod(3,p),Mod(2,p),p-1)
time = 51,617 ms.
%21 = 391862826185609110238504885400229618
while the same is easier to compute with pollard
gp > p=nextprime(2^120); znlog(Mod(3,5*p)^4,Mod(2,5*p)^4,p-1)
time = 5,615 ms.
%20 = 391862826185609110238504885400229618
I do not know how the choice of algorithm is made, maybe there is an issue here.