aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-07-12 10:41:46 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2015-07-12 10:41:46 -0500
commitb32b005b1fa3965ebc76131eb4c6ebd352cc6f1a (patch)
tree4ee44c38b6aa0bf082ce04fcd89c07d7ba9e81a8 /docs/hazmat/primitives/asymmetric
parent5e0da3aad87d3c7ee617ad354973a8f9b0ed956e (diff)
downloadcryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.tar.gz
cryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.tar.bz2
cryptography-b32b005b1fa3965ebc76131eb4c6ebd352cc6f1a.zip
fixed this doc too
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r--docs/hazmat/primitives/asymmetric/serialization.rst4
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>`.