aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/ec
diff options
context:
space:
mode:
authorJ08nY2020-03-07 21:42:03 +0100
committerJ08nY2020-03-07 21:42:03 +0100
commit38d04f0d19059b2d8c6ad8fc46a9eec67946fffe (patch)
treed1c59ce418cd244f548dc07729e0a8157ffef850 /test/ec
parent8b8389ce6177cff95865280c9476569dd1abb7c7 (diff)
downloadpyecsca-38d04f0d19059b2d8c6ad8fc46a9eec67946fffe.tar.gz
pyecsca-38d04f0d19059b2d8c6ad8fc46a9eec67946fffe.tar.zst
pyecsca-38d04f0d19059b2d8c6ad8fc46a9eec67946fffe.zip
Remove Trace title and data attributes, use meta attr.
Diffstat (limited to 'test/ec')
-rw-r--r--test/ec/test_configuration.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ec/test_configuration.py b/test/ec/test_configuration.py
index 54e4827..9c8e361 100644
--- a/test/ec/test_configuration.py
+++ b/test/ec/test_configuration.py
@@ -1,7 +1,7 @@
from unittest import TestCase
from pyecsca.ec.configuration import (all_configurations, HashType, RandomMod, Multiplication,
- Squaring, Reduction)
+ Squaring, Reduction, Inversion)
from pyecsca.ec.model import ShortWeierstrassModel
from pyecsca.ec.mult import LTRMultiplier
from .utils import slow
@@ -15,7 +15,8 @@ class ConfigurationTests(TestCase):
"mod_rand": RandomMod.SAMPLE,
"mult": Multiplication.BASE,
"sqr": Squaring.BASE,
- "red": Reduction.BASE
+ "red": Reduction.BASE,
+ "inv": Inversion.GCD
}
@slow