diff options
Diffstat (limited to 'src/cryptography/x509/base.py')
-rw-r--r-- | src/cryptography/x509/base.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptography/x509/base.py b/src/cryptography/x509/base.py index 49761046..057d0e9b 100644 --- a/src/cryptography/x509/base.py +++ b/src/cryptography/x509/base.py @@ -156,6 +156,11 @@ class Certificate(object): @six.add_metaclass(abc.ABCMeta) class CertificateRevocationList(object): + @abc.abstractmethod + def public_bytes(self, encoding): + """ + Serializes the CRL to PEM or DER format. + """ @abc.abstractmethod def fingerprint(self, algorithm): |