aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-26 11:47:21 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-26 11:47:21 -0600
commit0e94fbe27e3942620906b7f275fa69c55defacd5 (patch)
treef9053b3bfeedd0e6a3425b4115edea7131c79de9 /cryptography
parentd527b30d2f4515ea8d2c9af7fe7317dcab276aff (diff)
downloadcryptography-0e94fbe27e3942620906b7f275fa69c55defacd5.tar.gz
cryptography-0e94fbe27e3942620906b7f275fa69c55defacd5.tar.bz2
cryptography-0e94fbe27e3942620906b7f275fa69c55defacd5.zip
make public_key an abstractmethod, update docs
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/hazmat/primitives/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index 81bab9d7..c91fd5c5 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -190,7 +190,7 @@ class RSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
The bit length of the public modulus.
"""
- @abc.abstractproperty
+ @abc.abstractmethod
def public_key(self):
"""
The RSAPublicKey associated with this private key.