diff options
| author | J08nY | 2020-06-13 19:34:26 +0200 |
|---|---|---|
| committer | J08nY | 2020-06-13 19:36:00 +0200 |
| commit | 7e51c6546d369ec46a6ae8978147e79f2f0195a3 (patch) | |
| tree | c34c825cbb7dfbeb167a75961e8d9c4f5ddba4d8 /pyecsca/ec/key_agreement.py | |
| parent | bec7fbe0996481bbebab80b18d781f408d96aae6 (diff) | |
| download | pyecsca-7e51c6546d369ec46a6ae8978147e79f2f0195a3.tar.gz pyecsca-7e51c6546d369ec46a6ae8978147e79f2f0195a3.tar.zst pyecsca-7e51c6546d369ec46a6ae8978147e79f2f0195a3.zip | |
Diffstat (limited to 'pyecsca/ec/key_agreement.py')
| -rw-r--r-- | pyecsca/ec/key_agreement.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyecsca/ec/key_agreement.py b/pyecsca/ec/key_agreement.py index 6d6728f..7d139fe 100644 --- a/pyecsca/ec/key_agreement.py +++ b/pyecsca/ec/key_agreement.py @@ -3,7 +3,7 @@ from typing import Optional, Any from public import public -from .context import Action +from .context import ResultAction from .mod import Mod from .mult import ScalarMultiplier from .params import DomainParameters @@ -11,7 +11,7 @@ from .point import Point @public -class ECDHAction(Action): +class ECDHAction(ResultAction): """An ECDH key exchange.""" params: DomainParameters hash_algo: Optional[Any] @@ -64,7 +64,7 @@ class KeyAgreement(object): :return: The shared secret. """ - with ECDHAction(self.params, self.hash_algo, self.privkey, self.pubkey): + with ECDHAction(self.params, self.hash_algo, self.privkey, self.pubkey) as action: affine_point = self.perform_raw() x = int(affine_point.x) p = self.params.curve.prime @@ -72,7 +72,7 @@ class KeyAgreement(object): result = x.to_bytes(n, byteorder="big") if self.hash_algo is not None: result = self.hash_algo(result).digest() - return result + return action.exit(result) @public |
