diff options
-rw-r--r-- | src/cryptography/x509.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index 71ba9042..ec2092bb 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -1125,6 +1125,12 @@ class Certificate(object): in the certificate. """ + @abc.abstractproperty + def extensions(self): + """ + Returns an Extensions object. + """ + @abc.abstractmethod def __eq__(self, other): """ |