diff options
Diffstat (limited to 'include/pk_core.h')
-rw-r--r-- | include/pk_core.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/pk_core.h b/include/pk_core.h index 78fc49314..d28e2315e 100644 --- a/include/pk_core.h +++ b/include/pk_core.h @@ -27,10 +27,13 @@ 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); + const BigInt&, const BigInt&, const BigInt&, + const BigInt&, const BigInt&, const BigInt&); + ~IF_Core() { delete op; } private: IF_Operation* op; |