aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Caron <andre.l.caron@gmail.com>2015-05-19 21:24:31 -0400
committerAndre Caron <andre.l.caron@gmail.com>2015-05-19 21:24:31 -0400
commit18ef34b9139ccc2018aada63c2386bceae0da4c9 (patch)
treea1e7d8e74d5a35645ec5aa72ce855ac154761e66
parenta8aded6346b8016d8f9e7e5d2ad75319dd69dcbb (diff)
downloadcryptography-18ef34b9139ccc2018aada63c2386bceae0da4c9.tar.gz
cryptography-18ef34b9139ccc2018aada63c2386bceae0da4c9.tar.bz2
cryptography-18ef34b9139ccc2018aada63c2386bceae0da4c9.zip
Adds missing docstring.
-rw-r--r--src/cryptography/x509.py3
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