diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-05 21:01:16 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-08 15:50:17 -0500 |
commit | 419615b0cf02d3763b7da208d7118b39e5f25a3b (patch) | |
tree | f4e0eeacb33dfa03ad734c4aa2c8e6222edf59df /docs/hazmat/primitives/asymmetric/serialization.rst | |
parent | 88e7ed6415ccf7fb2432b90876deefa8ab88cc98 (diff) | |
download | cryptography-419615b0cf02d3763b7da208d7118b39e5f25a3b.tar.gz cryptography-419615b0cf02d3763b7da208d7118b39e5f25a3b.tar.bz2 cryptography-419615b0cf02d3763b7da208d7118b39e5f25a3b.zip |
serialize EC public keys
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/serialization.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/serialization.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/serialization.rst b/docs/hazmat/primitives/asymmetric/serialization.rst index fb8c93a4..e4b2d68b 100644 --- a/docs/hazmat/primitives/asymmetric/serialization.rst +++ b/docs/hazmat/primitives/asymmetric/serialization.rst @@ -315,7 +315,9 @@ Serialization Formats An enumeration for public key formats. Used with the ``public_bytes`` method available on - :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`. + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization` + and + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.EllipticCurvePublicKeyWithSerialization`. .. attribute:: SubjectPublicKeyInfo @@ -341,7 +343,9 @@ Serialization Encodings , :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithSerialization` and - :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization`. + :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKeyWithSerialization` + as well as ``public_bytes`` on + :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKeyWithSerialization`. .. attribute:: PEM |