aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-06-25 12:28:11 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-06-25 11:28:10 -0500
commit4fc052fc8cd2bbfeceb797f3b1b71ed0f03c0768 (patch)
tree8bb05f9c73275526053f152d3b3e229d3d3ebbd4 /docs/hazmat/primitives/asymmetric
parentbfd374469ba7a91969fff03285fccdd0b2f9e759 (diff)
downloadcryptography-4fc052fc8cd2bbfeceb797f3b1b71ed0f03c0768.tar.gz
cryptography-4fc052fc8cd2bbfeceb797f3b1b71ed0f03c0768.tar.bz2
cryptography-4fc052fc8cd2bbfeceb797f3b1b71ed0f03c0768.zip
Fixes #2992 -- clearly link to a key dumping docs in serialization mo… (#3013)
* Fixes #2992 -- clearly link to a key dumping docs in serialization module * fixed rest * guh, grammar
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r--docs/hazmat/primitives/asymmetric/serialization.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst
index 7cef77fd..815a9cb5 100644
--- a/docs/hazmat/primitives/asymmetric/serialization.rst
+++ b/docs/hazmat/primitives/asymmetric/serialization.rst
@@ -85,6 +85,16 @@ methods.
... else:
... raise TypeError
+Key dumping
+~~~~~~~~~~~
+
+The ``serialization`` module contains functions for loading keys from
+``bytes``. To dump a ``key`` object to ``bytes``, you must call the appropriate
+bytes on the key object. Documentation for these methods in found in the
+:mod:`~cryptography.hazmat.primitives.asymmetric.rsa`,
+:mod:`~cryptography.hazmat.primitives.asymmetric.dsa`, and
+:mod:`~cryptography.hazmat.primitives.asymmetric.ec` module documentation.
+
PEM
~~~