aboutsummaryrefslogtreecommitdiffstats
path: root/include/elgamal.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-06-20 19:03:45 +0000
committerlloyd <[email protected]>2008-06-20 19:03:45 +0000
commit7dde81851bfb6cef78c3480acc2f1c1dedb1f126 (patch)
tree06f35288c9c08b9f77468c664dbf8a65aaaf2647 /include/elgamal.h
parent770a9850f1a7c6c65b0316503b99798a6ff910dd (diff)
Similiar combining transform for the ElGamal, DSA, and NR private key
constructors.
Diffstat (limited to 'include/elgamal.h')
-rw-r--r--include/elgamal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/elgamal.h b/include/elgamal.h
index 7cce0a73e..c85f6986e 100644
--- a/include/elgamal.h
+++ b/include/elgamal.h
@@ -46,8 +46,8 @@ class BOTAN_DLL ElGamal_PrivateKey : public ElGamal_PublicKey,
bool check_key(RandomNumberGenerator& rng, bool) const;
ElGamal_PrivateKey() {}
- ElGamal_PrivateKey(const DL_Group&, RandomNumberGenerator&);
- ElGamal_PrivateKey(const DL_Group&, const BigInt&, const BigInt& = 0);
+ ElGamal_PrivateKey(RandomNumberGenerator&, const DL_Group&,
+ const BigInt& = 0);
private:
void PKCS8_load_hook(RandomNumberGenerator&, bool = false);
};