diff options
Diffstat (limited to 'pyecsca/misc/cfg.py')
| -rw-r--r-- | pyecsca/misc/cfg.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyecsca/misc/cfg.py b/pyecsca/misc/cfg.py index df3cce1..8a5a9ee 100644 --- a/pyecsca/misc/cfg.py +++ b/pyecsca/misc/cfg.py @@ -11,6 +11,7 @@ from public import public @public class ECConfig(object): """Configuration for the :py:mod:`pyecsca.ec` package.""" + _no_inverse_action: str = "error" _non_residue_action: str = "error" _unsatisfied_formula_assumption_action: str = "error" @@ -111,6 +112,7 @@ class ECConfig(object): @public class Config(object): """A runtime configuration for the library.""" + ec: ECConfig """Configuration for the :py:mod:`pyecsca.ec` package.""" |
