diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-27 11:59:56 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-27 11:59:56 -0400 |
commit | e9022fee01112d00d97ebc499a48f5d71fb83af7 (patch) | |
tree | 8645894150322408d44d200c6e303fa20e868f99 /docs/hazmat/backends | |
parent | 45d4c5909bd857986b901d59fd4d77bce63bfeff (diff) | |
parent | cff58d8d28ad15a8f7abaaa6ff5320a7d1f5b2f9 (diff) | |
download | cryptography-e9022fee01112d00d97ebc499a48f5d71fb83af7.tar.gz cryptography-e9022fee01112d00d97ebc499a48f5d71fb83af7.tar.bz2 cryptography-e9022fee01112d00d97ebc499a48f5d71fb83af7.zip |
Merge pull request #1348 from reaperhulk/improve-naming-consistency
deprecate backend method names for elliptic curve number loading
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 4 |
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` |