diff options
-rw-r--r-- | src/cryptography/x509.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index a786c705..1635a517 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -1169,6 +1169,9 @@ class Certificate(object): @abc.abstractmethod def public_bytes(self, encoding): + """ + Serializes the certificate to PEM or DER format. + """ pass |