diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-07-21 11:47:58 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-07-20 23:47:58 -0400 |
commit | fcf431a7764fdb93a012466f449a06dc15e53258 (patch) | |
tree | 668910f58a6170ce9d85c49a248c2d398444f446 /src | |
parent | 61114a2e69875eb31e9299913aa26f1627332383 (diff) | |
download | cryptography-fcf431a7764fdb93a012466f449a06dc15e53258.tar.gz cryptography-fcf431a7764fdb93a012466f449a06dc15e53258.tar.bz2 cryptography-fcf431a7764fdb93a012466f449a06dc15e53258.zip |
sign is a method (#4362)
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 |