aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric/ec.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/ec.rst')
-rw-r--r--docs/hazmat/primitives/asymmetric/ec.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst
index 4b0d30c5..f88b965a 100644
--- a/docs/hazmat/primitives/asymmetric/ec.rst
+++ b/docs/hazmat/primitives/asymmetric/ec.rst
@@ -6,7 +6,7 @@ Elliptic Curve
.. currentmodule:: cryptography.hazmat.primitives.asymmetric.ec
-.. class:: EllipticCurvePrivateNumbers(private_key, public_numbers)
+.. class:: EllipticCurvePrivateNumbers(private_value, public_numbers)
.. versionadded:: 0.5
@@ -19,11 +19,11 @@ Elliptic Curve
The :class:`EllipticCurvePublicNumbers` which makes up the EC public
key associated with this EC private key.
- .. attribute:: private_key
+ .. attribute:: private_value
:type: int
- The private key.
+ The private value.
.. class:: EllipticCurvePublicNumbers(x, y, curve)