From 5283f5059b14d63ed0ed54c8384890320fbb9ec6 Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 19 Jun 2004 08:28:09 +0000 Subject: port to GCC 3.4 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@168 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- elgamal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'elgamal.h') diff --git a/elgamal.h b/elgamal.h index 3d6734e..20f1dc4 100644 --- a/elgamal.h +++ b/elgamal.h @@ -79,9 +79,9 @@ class CRYPTOPP_NO_VTABLE ElGamalObjectImpl : public DL_ObjectImplBaseCiphertextLength(0);} - const DL_GroupParameters_GFP & GetGroupParameters() const {return GetKey().GetGroupParameters();} + const DL_GroupParameters_GFP & GetGroupParameters() const {return this->GetKey().GetGroupParameters();} DecodingResult FixedLengthDecrypt(RandomNumberGenerator &rng, const byte *cipherText, byte *plainText) const {return Decrypt(rng, cipherText, FixedCiphertextLength(), plainText);} -- cgit v1.2.1