aboutsummaryrefslogtreecommitdiff
path: root/test/ec/test_params.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ec/test_params.py')
-rw-r--r--test/ec/test_params.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/ec/test_params.py b/test/ec/test_params.py
index 891a7ca..b020f9b 100644
--- a/test/ec/test_params.py
+++ b/test/ec/test_params.py
@@ -1,19 +1,18 @@
import pickle
-from importlib_resources import files, as_file
-
import pytest
+from importlib_resources import files, as_file
import test.data.ec
-from pyecsca.ec.mod import Mod, mod
-from pyecsca.ec.point import Point, InfinityPoint
-from pyecsca.misc.cfg import TemporaryConfig
from pyecsca.ec.coordinates import AffineCoordinateModel
+from pyecsca.ec.curve import EllipticCurve
from pyecsca.ec.error import UnsatisfiedAssumptionError
+from pyecsca.ec.mod import mod
+from pyecsca.ec.model import ShortWeierstrassModel
from pyecsca.ec.params import get_params, load_params, load_category, get_category, DomainParameters, \
load_params_ectester, load_params_ecgen
-from pyecsca.ec.model import ShortWeierstrassModel
-from pyecsca.ec.curve import EllipticCurve
+from pyecsca.ec.point import Point, InfinityPoint
+from pyecsca.misc.cfg import TemporaryConfig
def test_eq(secp128r1, curve25519):