diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-05-18 15:31:56 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-05-23 21:28:56 +0100 |
commit | a264eccab51b57422b99bd12d58a3f2a3f15ac1c (patch) | |
tree | 8552a190f0d1115fb494b93c927790025d7b1635 /docs/hazmat/primitives | |
parent | 81ce8ef0ad52edac1d252c9bc7485c79ba2fcec9 (diff) | |
download | cryptography-a264eccab51b57422b99bd12d58a3f2a3f15ac1c.tar.gz cryptography-a264eccab51b57422b99bd12d58a3f2a3f15ac1c.tar.bz2 cryptography-a264eccab51b57422b99bd12d58a3f2a3f15ac1c.zip |
Rename private_key to private_value
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 6 |
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) |