diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-05-17 16:59:58 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-05-23 21:05:47 +0100 |
commit | 3d643c57c219d9560890381561d831b789305c3c (patch) | |
tree | a066f7c7fc62ca8df6035f56d3f16ac1f2f33281 /docs/hazmat | |
parent | 23a6266ac6a763f07ce397af0c1957cc124e7f81 (diff) | |
download | cryptography-3d643c57c219d9560890381561d831b789305c3c.tar.gz cryptography-3d643c57c219d9560890381561d831b789305c3c.tar.bz2 cryptography-3d643c57c219d9560890381561d831b789305c3c.zip |
Add __init__ arguments to docs
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 44c24d7f..4b0d30c5 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 +.. class:: EllipticCurvePrivateNumbers(private_key, public_numbers) .. versionadded:: 0.5 @@ -26,7 +26,7 @@ Elliptic Curve The private key. -.. class:: EllipticCurvePublicNumbers +.. class:: EllipticCurvePublicNumbers(x, y, curve) .. versionadded:: 0.5 |