summaryrefslogtreecommitdiff
path: root/elgamal.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-16 00:16:32 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-16 00:16:32 +0000
commit750868d312243a5659963e931fd250d1fc20d90c (patch)
treebcbbc4e25e06f318e318629f0e193d393ea9e1af /elgamal.h
parent445926e60c66a92c6bc6bca6544bc13827241623 (diff)
downloadcryptopp-750868d312243a5659963e931fd250d1fc20d90c.tar.gz
fix compile with ICC
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@298 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 ef778ea..9afc30e 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();}