#include #include #include #include #include "numalgo.h" #include "primes.h" using namespace std; vector smallprimes; bool smallprimes_inited=false; void fillsmallprimes(){ smallprimes_inited=true; //TODO: reserve expected amount of space in smallprimes smallprimes.push_back(2); const int highbound=65000; bool composite[highbound/2]; //entries for 3, 5, 7, 9, etc. memset(composite,0,highbound/2*sizeof(bool)); int roothighbound=sqrt(highbound); for(int i=3;i<=highbound;i+=2){ if(composite[i/2-1])continue; smallprimes.push_back(i); if(i>roothighbound)continue; for(int j=i*i;j<=highbound;j+=2*i){ composite[j/2-1]=true; } } } pair genprimepair(Rng &rng,int nbits){ // for x = nbits/2: // (2^x)^2 = 2^(2x) // (2^x + 2^(x-2))^2 = 2^(2x) + 2^(2x-1) + 2^(2x-4) // ergo: (2^x + lambda*2^(x-2))^2 \in [2^(2x), 2^(2x+1)), for lambda \in [0,1] // To make sure the primes "differ in length by a few digits" [RSA78], we use x1=x-2 in the first // prime and x2=x+2 in the second random prime searched int x1=nbits/2-2,x2=(nbits+1)/2+2; assert(x1+x2==nbits); return make_pair( randprime(rng,Bigint::one<biglow); static const int maxrangesize=100001; Bigint diff(bighigh-biglow); Bigint low,high; //inclusive if(diff<=maxrangesize){ low=biglow; high=bighigh; } else { high=low=bigrandom(rng,diff-maxrangesize); high+=maxrangesize; } if(low.even())low+=1; if(high.even())high-=1; Bigint sizeb(high-low+1); assert(sizeb>=0&&sizeb<=maxrangesize); int nnums=(sizeb.lowdigits()+1)/2; // cerr<<"nnums="<=2*nnums)break; int lowoffset=low.divmod(Bigint(pr)).second.lowdigits(); int startat; if(lowoffset==0)startat=0; else if((pr-lowoffset)%2==0)startat=(pr-lowoffset)/2; else startat=(pr-lowoffset+pr)/2; for(int i=startat;i maybeprimes; maybeprimes.reserve(nleft); for(int i=0;i>=zerobits-1; assert(d.even()); d>>=1; assert(d.odd()); Bigint bi(expmod(Bigint::two,d,n)); if(bi==1||bi==nm1)return true; for(int i=1;i>=1; s++; } vector dbits=d.bits(); assert(dbits.size()>0); assert(dbits[dbits.size()-1]==true); Bigint U(1),V(P); Bigint Qk(iQ); for(int i=dbits.size()-2;i>=0;i--){ U*=V; V*=V; V-=Qk<<1; Qk*=Qk; if(dbits[i]){ Bigint unext(U*P); unext+=V; if(unext.odd())unext+=n; assert(unext.even()); unext>>=1; Bigint vnext(U*D); vnext+=V*P; if(vnext.odd())vnext+=n; assert(vnext.even()); vnext>>=1; U=unext.divmod(n).second; V=vnext.divmod(n).second; Qk=(Qk*iQ).divmod(n).second; } else { U=U.divmod(n).second; V=V.divmod(n).second; Qk=Qk.divmod(n).second; } } if(U==0)return true; if(V==0)return true; //r=0 check for(int r=1;r