diff options
author | lloyd <[email protected]> | 2008-05-24 19:14:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-05-24 19:14:00 +0000 |
commit | be4c408997cf182d974c33b1c62d7f6605c55f3e (patch) | |
tree | aad4126f540bdb24be1a20b765ca73dbacd2b38c /include/bigint.h | |
parent | 117ee205ea987df26945e28373a66716fee06876 (diff) |
Remove random_integer() and replace it with a BigInt constructor taking a
RandomNumberGenerator reference. Update all callers.
Diffstat (limited to 'include/bigint.h')
-rw-r--r-- | include/bigint.h | 1 |
1 files changed, 1 insertions, 0 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: |