diff options
author | lloyd <[email protected]> | 2008-05-24 19:06:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-05-24 19:06:45 +0000 |
commit | 117ee205ea987df26945e28373a66716fee06876 (patch) | |
tree | a3a61a34cbab8f7b9f129a4b51c8fa6a7d4f706b /include/pk_core.h | |
parent | df8691c753ad17d364c868f9b34a56a1f52bb9cf (diff) |
Pass an RNG reference to IF_Core
Diffstat (limited to 'include/pk_core.h')
-rw-r--r-- | include/pk_core.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/pk_core.h b/include/pk_core.h index 3f4ebda57..e4d50a685 100644 --- a/include/pk_core.h +++ b/include/pk_core.h @@ -26,7 +26,9 @@ class BOTAN_DLL IF_Core IF_Core() { op = 0; } IF_Core(const IF_Core&); - IF_Core(const BigInt&, const BigInt&, + + IF_Core(RandomNumberGenerator& rng, + const BigInt&, const BigInt&, const BigInt& = 0, const BigInt& = 0, const BigInt& = 0, const BigInt& = 0, const BigInt& = 0, const BigInt& = 0); ~IF_Core() { delete op; } |