diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-08 22:39:49 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-08 22:39:49 -0400 |
commit | 0ee210bf4c03309512fdaad13d481548d9056237 (patch) | |
tree | 3bdb6730ce0a993f373193528e618388282e70cf /docs/hazmat/primitives/asymmetric/serialization.rst | |
parent | 930fc6a24e890ac1ed044985eaf82118db542617 (diff) | |
parent | 26006c526782bba2628da1d7819550b455a3b784 (diff) | |
download | cryptography-0ee210bf4c03309512fdaad13d481548d9056237.tar.gz cryptography-0ee210bf4c03309512fdaad13d481548d9056237.tar.bz2 cryptography-0ee210bf4c03309512fdaad13d481548d9056237.zip |
Merge pull request #1734 from reaperhulk/serialize-dsa-public-key
DSA public key serialization
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/serialization.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index ff69973a..7839f346 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -316,8 +316,10 @@ Serialization Formats An enumeration for public key formats. Used with the ``public_bytes`` method available on :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization` - and - :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization`. + , + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKeyWithSerialization` + , and + :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKeyWithSerialization`. .. attribute:: SubjectPublicKeyInfo |