aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-25 12:28:07 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-27 10:18:25 -0500
commit77e95a016376dfdd08ef44549bd4ecc252fb3bf5 (patch)
tree94d05129210b648d5bc19b0b5f093538c997a9ac /docs
parent45d4c5909bd857986b901d59fd4d77bce63bfeff (diff)
downloadcryptography-77e95a016376dfdd08ef44549bd4ecc252fb3bf5.tar.gz
cryptography-77e95a016376dfdd08ef44549bd4ecc252fb3bf5.tar.bz2
cryptography-77e95a016376dfdd08ef44549bd4ecc252fb3bf5.zip
deprecate backend method names for elliptic curve number loading
fixes #1270
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/backends/interfaces.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index e8e1bac2..3b414339 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -558,7 +558,7 @@ A specific ``backend`` may provide one or more of these interfaces.
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurve`
provider.
- .. method:: elliptic_curve_private_key_from_numbers(numbers)
+ .. method:: load_elliptic_curve_private_numbers(numbers)
:param numbers: An instance of a
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateNumbers`
@@ -568,7 +568,7 @@ A specific ``backend`` may provide one or more of these interfaces.
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateKey`
provider.
- .. method:: elliptic_curve_public_key_from_numbers(numbers)
+ .. method:: load_elliptic_curve_public_numbers(numbers)
:param numbers: An instance of a
:class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePublicNumbers`