diff options
| author | andrr3j | 2023-07-19 14:21:31 +0200 |
|---|---|---|
| committer | andrr3j | 2023-07-19 14:21:31 +0200 |
| commit | fd8e1c3c40b216bc6beada39e86d07136e9f09a2 (patch) | |
| tree | 9dcdf5b32f160c21f8e3dbb113d6a883fe36b7ba | |
| parent | 9cc17da21c191c4e1b3c652d98ce4e493f811844 (diff) | |
| download | pyecsca-codegen-fd8e1c3c40b216bc6beada39e86d07136e9f09a2.tar.gz pyecsca-codegen-fd8e1c3c40b216bc6beada39e86d07136e9f09a2.tar.zst pyecsca-codegen-fd8e1c3c40b216bc6beada39e86d07136e9f09a2.zip | |
simulator test fix
| -rw-r--r-- | test/test_simulator.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/test/test_simulator.py b/test/test_simulator.py index 2e363e7..1bce829 100644 --- a/test/test_simulator.py +++ b/test/test_simulator.py @@ -117,16 +117,6 @@ class KeyGenerationTests(SimulatorTest): self.do_keygen_test(runner, self.curve32, RTLMultiplier, ["add-1998-cmo", "dbl-1998-cmo"], "rtl") - def test_coron(self): - runner = CliRunner() - self.do_keygen_test(runner, self.curve32, CoronMultiplier, - ["add-1998-cmo", "dbl-1998-cmo"], "coron") - - def test_bnaf(self): - runner = CliRunner() - self.do_keygen_test(runner, self.curve32, BinaryNAFMultiplier, - ["add-1998-cmo", "dbl-1998-cmo", "neg"], "bnaf") - class ScalarMultiplicationTests(SimulatorTest): @@ -151,16 +141,6 @@ class ScalarMultiplicationTests(SimulatorTest): self.do_mult_test(runner, self.curve32, RTLMultiplier, ["add-1998-cmo", "dbl-1998-cmo"], "rtl") - def test_coron(self): - runner = CliRunner() - self.do_mult_test(runner, self.curve32, CoronMultiplier, - ["add-1998-cmo", "dbl-1998-cmo"], "coron") - - def test_bnaf(self): - runner = CliRunner() - self.do_mult_test(runner, self.curve32, BinaryNAFMultiplier, - ["add-1998-cmo", "dbl-1998-cmo", "neg"], "bnaf") - class ECDHTests(SimulatorTest): def do_ecdh_test(self, runner, params, mult_class, formulas, mult_name): @@ -187,16 +167,6 @@ class ECDHTests(SimulatorTest): self.do_ecdh_test(runner, self.curve32, RTLMultiplier, ["add-1998-cmo", "dbl-1998-cmo"], "rtl") - def test_coron(self): - runner = CliRunner() - self.do_ecdh_test(runner, self.curve32, CoronMultiplier, - ["add-1998-cmo", "dbl-1998-cmo"], "coron") - - def test_bnaf(self): - runner = CliRunner() - self.do_ecdh_test(runner, self.curve32, BinaryNAFMultiplier, - ["add-1998-cmo", "dbl-1998-cmo", "neg"], "bnaf") - class ECDSATests(SimulatorTest): def do_ecdsa_test(self, runner, params, mult_class, formulas, mult_name): |
