summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-19 05:52:45 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-19 05:52:45 -0500
commit4fd250c5c4a5026ac5d4cffea01ab916b6e77df6 (patch)
treede3e383eb86a1b2f2f72530c7c259361c0b4801f
parent55420553271ef926c4939399084a243b9ed1fcde (diff)
downloadcryptopp-git-4fd250c5c4a5026ac5d4cffea01ab916b6e77df6.tar.gz
Remove commented compatibility methods
-rw-r--r--eccrypto.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/eccrypto.h b/eccrypto.h
index 3072f592..29ce08ac 100644
--- a/eccrypto.h
+++ b/eccrypto.h
@@ -158,12 +158,6 @@ public:
bool operator==(const ThisClass &rhs) const
{return this->m_groupPrecomputation.GetCurve() == rhs.m_groupPrecomputation.GetCurve() && this->m_gpc.GetBase(this->m_groupPrecomputation) == rhs.m_gpc.GetBase(rhs.m_groupPrecomputation);}
- //#ifdef CRYPTOPP_MAINTAIN_BACKWARDS_COMPATIBILITY
- //const Point& GetBasePoint() const {return this->GetSubgroupGenerator();}
- //const Integer& GetBasePointOrder() const {return this->GetSubgroupOrder();}
- //void LoadRecommendedParameters(const OID &oid) {Initialize(oid);}
- //#endif
-
protected:
unsigned int FieldElementLength() const {return GetCurve().GetField().MaxElementByteLength();}
unsigned int ExponentLength() const {return m_n.ByteCount();}