aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/x509/base.py
diff options
context:
space:
mode:
authorJoern Heissler <joern@fishpond.co.nz>2016-01-18 00:24:44 +0100
committerJoern Heissler <joern@fishpond.co.nz>2016-01-18 00:24:44 +0100
commitfbda8ce83d8aa774bbd5438dfd98def87585df3b (patch)
treef89002fc90c97980d9cea0b4b33b2b382a062714 /src/cryptography/x509/base.py
parent1bd77e2f4ee2fcdd9233ea36ed74edeee02817c5 (diff)
downloadcryptography-fbda8ce83d8aa774bbd5438dfd98def87585df3b.tar.gz
cryptography-fbda8ce83d8aa774bbd5438dfd98def87585df3b.tar.bz2
cryptography-fbda8ce83d8aa774bbd5438dfd98def87585df3b.zip
Change method to property
Diffstat (limited to 'src/cryptography/x509/base.py')
-rw-r--r--src/cryptography/x509/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptography/x509/base.py b/src/cryptography/x509/base.py
index d24070d5..4a22ed02 100644
--- a/src/cryptography/x509/base.py
+++ b/src/cryptography/x509/base.py
@@ -288,8 +288,8 @@ class CertificateSigningRequest(object):
2986.
"""
- @abc.abstractmethod
- def verify(self):
+ @abc.abstractproperty
+ def is_signature_valid(self):
"""
Verifies signature of signing request.
"""