diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/primitives/asymmetric/ec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/primitives/asymmetric/ec.py b/src/cryptography/hazmat/primitives/asymmetric/ec.py index 6cbfcab4..e2e55e9e 100644 --- a/src/cryptography/hazmat/primitives/asymmetric/ec.py +++ b/src/cryptography/hazmat/primitives/asymmetric/ec.py @@ -68,7 +68,7 @@ class EllipticCurvePrivateKey(object): Bit size of a secret scalar for the curve. """ - @abc.abstractproperty + @abc.abstractmethod def sign(self, data, signature_algorithm): """ Signs the data |