summaryrefslogtreecommitdiff
path: root/elgamal.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-16 00:16:32 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-16 00:16:32 +0000
commit78f88e5d1d269ad537cf97b0ecea75a1f8a8e3e5 (patch)
treebcbbc4e25e06f318e318629f0e193d393ea9e1af /elgamal.h
parentc46f00c4fad6e39e18ecb442bf7e01544ea1b8ff (diff)
downloadcryptopp-git-78f88e5d1d269ad537cf97b0ecea75a1f8a8e3e5.tar.gz
fix compile with ICC
Diffstat (limited to 'elgamal.h')
-rw-r--r--elgamal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/elgamal.h b/elgamal.h
index ef778eaa..9afc30ee 100644
--- a/elgamal.h
+++ b/elgamal.h
@@ -78,7 +78,7 @@ template <class BASE, class SCHEME_OPTIONS, class KEY>
class ElGamalObjectImpl : public DL_ObjectImplBase<BASE, SCHEME_OPTIONS, KEY>, public ElGamalBase
{
public:
- size_t FixedMaxPlaintextLength() const {return MaxPlaintextLength(FixedCiphertextLength());}
+ size_t FixedMaxPlaintextLength() const {return this->MaxPlaintextLength(FixedCiphertextLength());}
size_t FixedCiphertextLength() const {return this->CiphertextLength(0);}
const DL_GroupParameters_GFP & GetGroupParameters() const {return this->GetKey().GetGroupParameters();}