diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-05 16:58:21 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-05 16:58:21 -0500 |
commit | 7bdb2d8a1f4c8837f06d7f78a04d18c6ac3e5240 (patch) | |
tree | f6ac0d49ddb7a50e1606ff85ea54ef4387b596b5 /docs/hazmat/primitives/asymmetric/serialization.rst | |
parent | cd7f63b28b09424b8edc8ec15d3683f070d76019 (diff) | |
parent | ec3426383c58098a326b3568a42f298046f1b9c5 (diff) | |
download | cryptography-7bdb2d8a1f4c8837f06d7f78a04d18c6ac3e5240.tar.gz cryptography-7bdb2d8a1f4c8837f06d7f78a04d18c6ac3e5240.tar.bz2 cryptography-7bdb2d8a1f4c8837f06d7f78a04d18c6ac3e5240.zip |
Merge pull request #1712 from reaperhulk/serialize-dsa-private-key
serialize DSA private keys
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/serialization.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index 49a0e36e..4a2aedc9 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -293,8 +293,10 @@ Serialization Formats An enumeration for private key formats. Used with the ``private_bytes`` method available on :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization` + , + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization` and - :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`. + :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`. .. attribute:: TraditionalOpenSSL @@ -317,8 +319,10 @@ Serialization Encodings An enumeration for encoding types. Used with the ``private_bytes`` method available on :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization` + , + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization` and - :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`. + :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`. .. attribute:: PEM @@ -337,8 +341,10 @@ Serialization Encryption Types Objects with this interface are usable as encryption types with methods like ``private_bytes`` available on :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization` + , + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization` and - :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization`. + :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`. All other classes in this section represent the available choices for encryption and have this interface. They are used with :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKeyWithSerialization.private_bytes`. |