aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJ08nY2025-03-19 15:07:06 +0100
committerJ08nY2025-03-19 15:07:06 +0100
commitb3d4e400a81950a87aa866726f9d2d5d97a1f92e (patch)
tree8bb0bdac65affa6b6b757f48a47f02f9cfd72ffe /test
parentf50335f62ff4ebd4ea855597357f1d7a6df8eef8 (diff)
downloadpyecsca-b3d4e400a81950a87aa866726f9d2d5d97a1f92e.tar.gz
pyecsca-b3d4e400a81950a87aa866726f9d2d5d97a1f92e.tar.zst
pyecsca-b3d4e400a81950a87aa866726f9d2d5d97a1f92e.zip
Diffstat (limited to 'test')
-rw-r--r--test/ec/test_mult.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/ec/test_mult.py b/test/ec/test_mult.py
index e915585..07ddcdf 100644
--- a/test/ec/test_mult.py
+++ b/test/ec/test_mult.py
@@ -461,7 +461,11 @@ def test_basic_multipliers(secp128r1, num, add, dbl):
)
for combination in product(*bgmw_options.values())
]
- comb_options = {"width": (2, 3, 4, 5), "accumulation_order": tuple(AccumulationOrder)}
+ comb_options = {
+ "width": (2, 3, 4, 5),
+ "accumulation_order": tuple(AccumulationOrder),
+ "always": (True, False),
+ }
combs = [
CombMultiplier(
add, dbl, scl=scale, **dict(zip(comb_options.keys(), combination))