aboutsummaryrefslogtreecommitdiff
path: root/pyecsca/ec/point.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyecsca/ec/point.py')
-rw-r--r--pyecsca/ec/point.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyecsca/ec/point.py b/pyecsca/ec/point.py
index 265a0ea..05f2503 100644
--- a/pyecsca/ec/point.py
+++ b/pyecsca/ec/point.py
@@ -15,6 +15,7 @@ class Point(object):
self.coords = coords
def __eq__(self, other):
+ # TODO: Somehow compare projective points. Via a map to an affinepoint?
if type(other) is not Point:
return False
return self.coordinate_model == other.coordinate_model and self.coords == other.coords