diff options
| author | J08nY | 2020-12-26 18:53:30 +0100 |
|---|---|---|
| committer | J08nY | 2020-12-26 18:53:30 +0100 |
| commit | b35bb2aea9ea69dac0cba57766f64cb171c8d743 (patch) | |
| tree | 210af79765218ac4858adf869c2d32003b69b9d9 /test | |
| parent | c2ad6329efa5d0024dc0b281b86738fbadaf7b92 (diff) | |
| download | pyecsca-b35bb2aea9ea69dac0cba57766f64cb171c8d743.tar.gz pyecsca-b35bb2aea9ea69dac0cba57766f64cb171c8d743.tar.zst pyecsca-b35bb2aea9ea69dac0cba57766f64cb171c8d743.zip | |
Fixup the packaging, put cfg into a proper subpackage.
Diffstat (limited to 'test')
| -rw-r--r-- | test/ec/test_formula.py | 2 | ||||
| -rw-r--r-- | test/ec/test_mod.py | 2 | ||||
| -rw-r--r-- | test/ec/test_params.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/ec/test_formula.py b/test/ec/test_formula.py index 3353426..779b140 100644 --- a/test/ec/test_formula.py +++ b/test/ec/test_formula.py @@ -1,6 +1,6 @@ from unittest import TestCase -from pyecsca.cfg import TemporaryConfig +from pyecsca.misc.cfg import TemporaryConfig from pyecsca.ec.error import UnsatisfiedAssumptionError from pyecsca.ec.params import get_params from pyecsca.ec.point import Point diff --git a/test/ec/test_mod.py b/test/ec/test_mod.py index aafef43..24b3302 100644 --- a/test/ec/test_mod.py +++ b/test/ec/test_mod.py @@ -2,7 +2,7 @@ from unittest import TestCase from pyecsca.ec.mod import Mod, gcd, extgcd, Undefined, miller_rabin, has_gmp, RawMod from pyecsca.ec.error import NonInvertibleError, NonResidueError, NonInvertibleWarning, NonResidueWarning -from pyecsca.cfg import getconfig, TemporaryConfig +from pyecsca.misc.cfg import getconfig, TemporaryConfig class ModTests(TestCase): diff --git a/test/ec/test_params.py b/test/ec/test_params.py index f4b647c..eb70342 100644 --- a/test/ec/test_params.py +++ b/test/ec/test_params.py @@ -2,7 +2,7 @@ from unittest import TestCase from parameterized import parameterized -from pyecsca.cfg import TemporaryConfig +from pyecsca.misc.cfg import TemporaryConfig from pyecsca.ec.coordinates import AffineCoordinateModel from pyecsca.ec.error import UnsatisfiedAssumptionError from pyecsca.ec.params import get_params, load_params, load_category, get_category |
