diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-05 08:29:02 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-07-05 08:29:02 -0400 |
commit | 999605e33ae72ba439eddd22187697f0f6296171 (patch) | |
tree | 98ab3fd9efa84ba179cedac685ecc19dda5c2d71 /docs/hazmat/primitives/asymmetric/ec.rst | |
parent | 6e56df3e7a6a9e08fe80c30c9815fbbbae00a682 (diff) | |
parent | 8ea90ef486632b71736c53083a8d93134c96c2db (diff) | |
download | cryptography-999605e33ae72ba439eddd22187697f0f6296171.tar.gz cryptography-999605e33ae72ba439eddd22187697f0f6296171.tar.bz2 cryptography-999605e33ae72ba439eddd22187697f0f6296171.zip |
Merge pull request #2112 from reaperhulk/publickeywithserialization
move PublicKeyWithSerialization methods to PublicKey
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/ec.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index daec5df3..e0abe0ab 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -386,13 +386,6 @@ Key Interfaces The elliptic curve for this key. - -.. class:: EllipticCurvePublicKeyWithSerialization - - .. versionadded:: 0.6 - - Extends :class:`EllipticCurvePublicKey`. - .. method:: public_numbers() Create a :class:`EllipticCurvePublicNumbers` object. @@ -417,6 +410,13 @@ Key Interfaces :return bytes: Serialized key. +.. class:: EllipticCurvePublicKeyWithSerialization + + .. versionadded:: 0.6 + + Alias for :class:`EllipticCurvePublicKey`. + + .. _`FIPS 186-3`: http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf .. _`FIPS 186-4`: http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf .. _`some concern`: https://crypto.stackexchange.com/questions/10263/should-we-trust-the-nist-recommended-ecc-parameters |