diff options
| author | Andrej Bátora | 2023-10-05 14:45:06 +0200 |
|---|---|---|
| committer | GitHub | 2023-10-05 14:45:06 +0200 |
| commit | 382a5896488f033c8269cf81fcdde3bf1ef98cad (patch) | |
| tree | 6f3ffa714b611b205ecfb6a1399dd8d97ddd393f /pyecsca/sca | |
| parent | 28d3448cec3599559a04e3f0ebe8d175bf6385d1 (diff) | |
| parent | 9b571fdf84732419b52e0465d8354f9d8b6794e5 (diff) | |
| download | pyecsca-382a5896488f033c8269cf81fcdde3bf1ef98cad.tar.gz pyecsca-382a5896488f033c8269cf81fcdde3bf1ef98cad.tar.zst pyecsca-382a5896488f033c8269cf81fcdde3bf1ef98cad.zip | |
Merge branch 'J08nY:master' into CPA_pyecsca
Diffstat (limited to 'pyecsca/sca')
| -rw-r--r-- | pyecsca/sca/re/rpa.py | 5 | ||||
| -rw-r--r-- | pyecsca/sca/re/zvp.py | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/pyecsca/sca/re/rpa.py b/pyecsca/sca/re/rpa.py index 5a44a0f..5459ff2 100644 --- a/pyecsca/sca/re/rpa.py +++ b/pyecsca/sca/re/rpa.py @@ -1,8 +1,5 @@ """ -Provides functionality inspired by the Refined-Power Analysis attack by Goubin. - - A Refined Power-Analysis Attack on Elliptic Curve Cryptosystems, Louis Goubin, PKC '03 - `<https://dl.acm.org/doi/10.5555/648120.747060>`_ +Provides functionality inspired by the Refined-Power Analysis attack by Goubin [RPA]_. """ from public import public from typing import MutableMapping, Optional, Callable, List diff --git a/pyecsca/sca/re/zvp.py b/pyecsca/sca/re/zvp.py index 53a38a2..7e3d790 100644 --- a/pyecsca/sca/re/zvp.py +++ b/pyecsca/sca/re/zvp.py @@ -1,8 +1,5 @@ """ -Provides functionality inspired by the Zero-value point attack. - - Zero-Value Point Attacks on Elliptic Curve Cryptosystem, Toru Akishita & Tsuyoshi Takagi , ISC '03 - `<https://doi.org/10.1007/10958513_17>`_ +Provides functionality inspired by the Zero-value point attack [ZVP]_. Implements ZVP point construction from [FFD]_. """ |
