aboutsummaryrefslogtreecommitdiff
path: root/pyecsca/sca
diff options
context:
space:
mode:
authorJ08nY2025-06-19 15:55:27 +0200
committerJ08nY2025-06-19 15:55:27 +0200
commit191de0d88f68a91b9658adacd20d0e0c01b9c9b8 (patch)
treea46e921201d7ca6bcac658170715c9d2de267e04 /pyecsca/sca
parentb244e5747258ad14e226a6f9df56ebc4be0f353b (diff)
downloadpyecsca-191de0d88f68a91b9658adacd20d0e0c01b9c9b8.tar.gz
pyecsca-191de0d88f68a91b9658adacd20d0e0c01b9c9b8.tar.zst
pyecsca-191de0d88f68a91b9658adacd20d0e0c01b9c9b8.zip
Diffstat (limited to 'pyecsca/sca')
-rw-r--r--pyecsca/sca/re/rpa.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pyecsca/sca/re/rpa.py b/pyecsca/sca/re/rpa.py
index 3fa1e5b..c7f2f1e 100644
--- a/pyecsca/sca/re/rpa.py
+++ b/pyecsca/sca/re/rpa.py
@@ -81,8 +81,6 @@ class MultipleContext(Context):
def enter_action(self, action: Action) -> None:
if isinstance(action, (ScalarMultiplicationAction, PrecomputationAction)):
self.inside.append(action)
- print("Entering action:", action)
- print("base", self.base)
if self.base:
# If we already did some computation with this context try to see if we are building on top of it.
if self.base != action.point:
@@ -106,7 +104,6 @@ class MultipleContext(Context):
self.parents = {self.base: [], self.neutral: []}
self.formulas = {self.base: "", self.neutral: ""}
self.precomp = {}
- print("after", self.base)
def exit_action(self, action: Action) -> None:
if isinstance(action, (ScalarMultiplicationAction, PrecomputationAction)):
@@ -116,8 +113,6 @@ class MultipleContext(Context):
if isinstance(action, FormulaAction) and self.inside:
action = cast(FormulaAction, action)
shortname = action.formula.shortname
- print(action.input_points, action.output_points)
- print(self.points)
if shortname == "dbl":
inp = action.input_points[0]
out = action.output_points[0]