diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-06-25 12:28:11 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-06-25 11:28:10 -0500 |
commit | 4fc052fc8cd2bbfeceb797f3b1b71ed0f03c0768 (patch) | |
tree | 8bb05f9c73275526053f152d3b3e229d3d3ebbd4 /docs/hazmat/primitives | |
parent | bfd374469ba7a91969fff03285fccdd0b2f9e759 (diff) | |
download | cryptography-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')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 10 |
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 ~~~ |