aboutsummaryrefslogtreecommitdiff
path: root/pyecsca/ec/signature.py
diff options
context:
space:
mode:
authorJ08nY2023-08-08 10:53:42 +0200
committerJ08nY2023-08-08 10:53:42 +0200
commitf0762df56cb6caedf2e62ed7f335b4c3ef0f2889 (patch)
tree260c6c5980eecc4e9606d7b5da9a58ca9ee99b6d /pyecsca/ec/signature.py
parente54a414a9dd303dac78e435df9d84fe1bcef4676 (diff)
downloadpyecsca-f0762df56cb6caedf2e62ed7f335b4c3ef0f2889.tar.gz
pyecsca-f0762df56cb6caedf2e62ed7f335b4c3ef0f2889.tar.zst
pyecsca-f0762df56cb6caedf2e62ed7f335b4c3ef0f2889.zip
Diffstat (limited to 'pyecsca/ec/signature.py')
-rw-r--r--pyecsca/ec/signature.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyecsca/ec/signature.py b/pyecsca/ec/signature.py
index 54ca010..abad783 100644
--- a/pyecsca/ec/signature.py
+++ b/pyecsca/ec/signature.py
@@ -74,6 +74,7 @@ class ECDSAAction(Action):
class ECDSASignAction(ECDSAAction):
"""ECDSA signing."""
+ # TODO: Make this a ResultAction
privkey: Mod
def __init__(
@@ -94,6 +95,7 @@ class ECDSASignAction(ECDSAAction):
class ECDSAVerifyAction(ECDSAAction):
"""ECDSA verification."""
+ # TODO: Make this a ResultAction
signature: SignatureResult
pubkey: Point