diff options
author | jschmidtlein <49664532+jschmidtlein@users.noreply.github.com> | 2019-11-04 17:48:12 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-11-04 20:48:12 -0500 |
commit | d06a3a8f9cfbdb04c091017bef15f10cc5fc0f45 (patch) | |
tree | 000e3ebdd86a0a63a493b82185b09bc22471f3c4 | |
parent | d169a51b27e68f817f94d84137baa4219c2800dc (diff) | |
download | cryptography-d06a3a8f9cfbdb04c091017bef15f10cc5fc0f45.tar.gz cryptography-d06a3a8f9cfbdb04c091017bef15f10cc5fc0f45.tar.bz2 cryptography-d06a3a8f9cfbdb04c091017bef15f10cc5fc0f45.zip |
issue-5039: added documentation for curve attribute on EllipticCurveP… (#5045)
* issue-5039: added documentation for curve attribute on EllipticCurvePrivateKey based on existing docs
* issue-5039: changed indentation
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 05dd846c..bd52aeee 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -611,6 +611,12 @@ Key Interfaces :func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`, which returns the decoded tuple ``(r, s)``. + .. attribute:: curve + + :type: :class:`EllipticCurve` + + The EllipticCurve that this key is on. + .. attribute:: key_size .. versionadded:: 1.9 |