diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-12 10:41:46 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-12 10:41:46 -0500 |
commit | b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a (patch) | |
tree | 4ee44c38b6aa0bf082ce04fcd89c07d7ba9e81a8 | |
parent | 5e0da3aad87d3c7ee617ad354973a8f9b0ed956e (diff) | |
download | cryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.tar.gz cryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.tar.bz2 cryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.zip |
fixed this doc too
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index 7839f346..8d51f0d7 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -97,8 +97,8 @@ all begin with ``-----BEGIN {format}-----`` and end with ``-----END .. note:: A PEM block which starts with ``-----BEGIN CERTIFICATE-----`` is not a - public or private key, it's an :doc:`X.509 Certificate </x509>`. You can - load it using :func:`~cryptography.x509.load_pem_x509_certificate` and + public or private key, it's an :doc:`X.509 Certificate </x509/index>`. You + can load it using :func:`~cryptography.x509.load_pem_x509_certificate` and extract the public key with :meth:`Certificate.public_key <cryptography.x509.Certificate.public_key>`. |