aboutsummaryrefslogtreecommitdiff
path: root/primes.h
diff options
context:
space:
mode:
Diffstat (limited to 'primes.h')
-rw-r--r--primes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/primes.h b/primes.h
index eb817b1..0be8aa7 100644
--- a/primes.h
+++ b/primes.h
@@ -9,11 +9,11 @@ extern std::vector<int> smallprimes;
void fillsmallprimes();
//for use in RSA (pass target number of bits of N)
-std::pair<Bigint,Bigint> genprimepair(int nbits);
+std::pair<Bigint,Bigint> genprimepair(Rng &rng,int nbits);
//finds random in range [low,high]; throws range_error("No primes") if no prime found
//Will call fillsmallprimes() if not yet done
-Bigint randprime(const Bigint &low,const Bigint &high);
+Bigint randprime(Rng &rng,const Bigint &low,const Bigint &high);
//checks Fermat [pseudo- or actual] primality
bool strongPseudoPrime2(const Bigint &n);