diff options
| author | J08nY | 2024-07-16 16:38:16 +0200 |
|---|---|---|
| committer | J08nY | 2024-07-16 16:38:16 +0200 |
| commit | b492e5d621c3173e5a64bebfd79d54e8c4ce8bb3 (patch) | |
| tree | 499fce5eb6b6c5b006107d1abdc75d3679cd5a0d /pyecsca/ec/point.py | |
| parent | eea57d6019d7b13a3c9e01cf1ecb11b132e5e291 (diff) | |
| download | pyecsca-b492e5d621c3173e5a64bebfd79d54e8c4ce8bb3.tar.gz pyecsca-b492e5d621c3173e5a64bebfd79d54e8c4ce8bb3.tar.zst pyecsca-b492e5d621c3173e5a64bebfd79d54e8c4ce8bb3.zip | |
Explain option to cythonize in docs.
Diffstat (limited to 'pyecsca/ec/point.py')
| -rw-r--r-- | pyecsca/ec/point.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/ec/point.py b/pyecsca/ec/point.py index ba79ace..1b11e3f 100644 --- a/pyecsca/ec/point.py +++ b/pyecsca/ec/point.py @@ -131,7 +131,7 @@ class Point: for var in coordinate_model.variables: if var in locls: result[var] = ( - mod(locls[var], curve.prime) + mod(locls[var], curve.prime) # type: ignore if not isinstance(locls[var], Mod) else locls[var] ) |
