diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-12-12 10:35:27 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-12-11 21:35:27 -0500 |
commit | 89e1e34d977e565171329c26de6ce9c8f12340e7 (patch) | |
tree | e4a01197009f171443392a7e172e756667a86448 /docs | |
parent | 4c5740a6747b78502f432b662024e5bf6a4ae8c4 (diff) | |
download | cryptography-89e1e34d977e565171329c26de6ce9c8f12340e7.tar.gz cryptography-89e1e34d977e565171329c26de6ce9c8f12340e7.tar.bz2 cryptography-89e1e34d977e565171329c26de6ce9c8f12340e7.zip |
deprecate old from_encoded_point (#4640)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 728c5159..168cdfd8 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -206,6 +206,11 @@ Elliptic Curve Signature Algorithms .. versionadded:: 1.1 + .. note:: + + This has been deprecated in favor of + :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.from_encoded_point` + Decodes a byte string as described in `SEC 1 v2.0`_ section 2.3.3 and returns an :class:`EllipticCurvePublicNumbers`. This method only supports uncompressed points. |