aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2024-03-23 08:53:01 -0400
committerGitHub <noreply@github.com>2024-03-23 12:53:01 +0000
commite9954a0a31db22201b96d62535f51a5f0316e218 (patch)
treeb414f80c6c1fc687945bd593b8a95a6d109a18db /docs
parent78fdf553a1913f86fe2bad08c33b1a2bee4cda5e (diff)
downloadpyca-cryptography-e9954a0a31db22201b96d62535f51a5f0316e218.zip
pyca-cryptography-e9954a0a31db22201b96d62535f51a5f0316e218.tar.gz
pyca-cryptography-e9954a0a31db22201b96d62535f51a5f0316e218.tar.bz2
fixes #10631 -- remove documentation for method that was removed (#10632)
* fixes #10631 -- remove documentation for method that was removed * Update CHANGELOG.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/primitives/asymmetric/ec.rst25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst
index c0a0ff7..a22a64b 100644
--- a/docs/hazmat/primitives/asymmetric/ec.rst
+++ b/docs/hazmat/primitives/asymmetric/ec.rst
@@ -200,31 +200,6 @@ Elliptic Curve Signature Algorithms
:raises ValueError: Raised if the point is invalid for the curve.
:returns: A new instance of :class:`EllipticCurvePublicKey`.
- .. classmethod:: from_encoded_point(curve, data)
-
- .. 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.
-
- :param curve: An
- :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
- instance.
-
- :param bytes data: The serialized point byte string.
-
- :returns: An :class:`EllipticCurvePublicNumbers` instance.
-
- :raises ValueError: Raised on invalid point type or data length.
-
- :raises TypeError: Raised when curve is not an
- :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`.
Elliptic Curve Key Exchange algorithm
-------------------------------------