diff options
| author | J08nY | 2025-03-11 21:54:35 +0100 |
|---|---|---|
| committer | J08nY | 2025-03-11 21:54:35 +0100 |
| commit | 90003215e350b16a43992e72decfe2b15125299e (patch) | |
| tree | 48a55dda4ffc30cb9219dc24a4f5904ee43c8f33 /pyecsca/ec | |
| parent | 414c78a620d9bfcd730c0729c8d26fca58cac977 (diff) | |
| download | pyecsca-90003215e350b16a43992e72decfe2b15125299e.tar.gz pyecsca-90003215e350b16a43992e72decfe2b15125299e.tar.zst pyecsca-90003215e350b16a43992e72decfe2b15125299e.zip | |
Diffstat (limited to 'pyecsca/ec')
| -rw-r--r-- | pyecsca/ec/formula/fake.py | 2 | ||||
| -rw-r--r-- | pyecsca/ec/mult/fixed.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyecsca/ec/formula/fake.py b/pyecsca/ec/formula/fake.py index 253095a..612712d 100644 --- a/pyecsca/ec/formula/fake.py +++ b/pyecsca/ec/formula/fake.py @@ -87,7 +87,7 @@ class FakePoint(Point): super().__init__(model, **coords) def __str__(self): - return "FakePoint" + return f"FakePoint{id(self)}" def __repr__(self): return str(self) diff --git a/pyecsca/ec/mult/fixed.py b/pyecsca/ec/mult/fixed.py index 2c60be2..fdf129d 100644 --- a/pyecsca/ec/mult/fixed.py +++ b/pyecsca/ec/mult/fixed.py @@ -5,7 +5,7 @@ from typing import MutableMapping, Optional from public import public from pyecsca.ec.formula import AdditionFormula, DoublingFormula, ScalingFormula -from pyecsca.ec.mult import ( +from pyecsca.ec.mult.base import ( AccumulatorMultiplier, ScalarMultiplier, ProcessingDirection, |
