diff options
author | lloyd <[email protected]> | 2008-06-27 14:29:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-27 14:29:33 +0000 |
commit | 34d5da54da524018580935da11525bd72b5a560e (patch) | |
tree | 398e07f035b4e72bf7a315f0d9f1e6e55b46795f /include/pk_core.h | |
parent | d1bc1ae91003bc10b46b0d1e38f0ac64080b4c81 (diff) |
Remove load checking, as it requires an RNG (at least at the moment).
Probably some variation of it will be added back in later, at least
to do basic checks like that primes are really odd (and we can do
basic primality checks, etc, even with an RNG).
Alternative: call check_key() manually on public keys you load with an
RNG object.
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 d28e2315e..585c12ee4 100644 --- a/include/pk_core.h +++ b/include/pk_core.h @@ -91,8 +91,10 @@ class BOTAN_DLL ELG_Core ELG_Core() { op = 0; } ELG_Core(const ELG_Core&); + + ELG_Core(const DL_Group&, const BigInt&); ELG_Core(RandomNumberGenerator&, const DL_Group&, - const BigInt&, const BigInt& = 0); + const BigInt&, const BigInt&); ~ELG_Core() { delete op; } private: |