diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bigint.h | 1 | ||||
-rw-r--r-- | include/numthry.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/bigint.h b/include/bigint.h index 5c4a9c997..2487fa91c 100644 --- a/include/bigint.h +++ b/include/bigint.h @@ -102,6 +102,7 @@ class BOTAN_DLL BigInt BigInt(const BigInt&); BigInt(const std::string&); BigInt(const byte[], u32bit, Base = Binary); + BigInt(RandomNumberGenerator& rng, u32bit bits); BigInt(Sign, u32bit); BigInt(NumberType, u32bit); private: diff --git a/include/numthry.h b/include/numthry.h index 6ca06be10..c6313bdb7 100644 --- a/include/numthry.h +++ b/include/numthry.h @@ -58,7 +58,6 @@ bool BOTAN_DLL run_primality_tests(RandomNumberGenerator&, /************************************************* * Random Number Generation * *************************************************/ -BigInt BOTAN_DLL random_integer(RandomNumberGenerator&, u32bit); BigInt BOTAN_DLL random_integer(RandomNumberGenerator&, const BigInt&, const BigInt&); |