diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index b7220239..f3c73d6b 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -7,17 +7,14 @@ from __future__ import absolute_import, division, print_function from enum import Enum -# TODO: document this class X509Version(Enum): v1 = 0 v3 = 2 -# TODO: document this def load_pem_x509_certificate(data, backend): return backend.load_pem_x509_certificate(data) -# TODO: document this def load_der_x509_certificate(data, backend): return backend.load_der_x509_certificate(data) |