diff options
Diffstat (limited to 'include/dl_algo.h')
-rw-r--r-- | include/dl_algo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dl_algo.h b/include/dl_algo.h index f279d4633..2bcd67cb9 100644 --- a/include/dl_algo.h +++ b/include/dl_algo.h @@ -18,7 +18,7 @@ namespace Botan { class BOTAN_DLL DL_Scheme_PublicKey : public virtual Public_Key { public: - bool check_key(bool) const; + bool check_key(RandomNumberGenerator& rng, bool) const; const DL_Group& get_domain() const { return group; } const BigInt& get_y() const { return y; } @@ -43,7 +43,7 @@ class BOTAN_DLL DL_Scheme_PrivateKey : public virtual DL_Scheme_PublicKey, public virtual Private_Key { public: - bool check_key(bool) const; + bool check_key(RandomNumberGenerator& rng, bool) const; const BigInt& get_x() const { return x; } |