summary refs log tree commit diff
path: root/crypto/src/math/ec/ECPoint.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/ec/ECPoint.cs')
-rw-r--r--crypto/src/math/ec/ECPoint.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/src/math/ec/ECPoint.cs b/crypto/src/math/ec/ECPoint.cs
index 4b6a2cbce..f8bbf04e7 100644
--- a/crypto/src/math/ec/ECPoint.cs
+++ b/crypto/src/math/ec/ECPoint.cs
@@ -50,7 +50,8 @@ namespace Org.BouncyCastle.Math.EC
         protected internal readonly ECFieldElement[] m_zs;
         protected internal readonly bool m_withCompression;
 
-        protected internal PreCompInfo m_preCompInfo = null;
+        // Dictionary is (string -> PreCompInfo)
+        protected internal IDictionary m_preCompTable = null;
 
         protected ECPoint(ECCurve curve, ECFieldElement	x, ECFieldElement y, bool withCompression)
             : this(curve, x, y, GetInitialZCoords(curve), withCompression)