diff options
Diffstat (limited to 'src/cryptography/x509/base.py')
-rw-r--r-- | src/cryptography/x509/base.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cryptography/x509/base.py b/src/cryptography/x509/base.py index 4a22ed02..8e3f9668 100644 --- a/src/cryptography/x509/base.py +++ b/src/cryptography/x509/base.py @@ -69,6 +69,12 @@ class Certificate(object): """ @abc.abstractproperty + def serial_number(self): + """ + Returns certificate serial number + """ + + @abc.abstractproperty def version(self): """ Returns the certificate version |