aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-10-27 12:29:58 +0900
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-10-27 12:30:29 +0900
commite4150bcc07fb2c68e3c860c31766b4282bba8740 (patch)
treeb688eae7a07be540e0cb2fd5ae44836afc8bf5d4 /docs/hazmat/primitives/asymmetric
parent3568563e0ecdec07606c8b5f3fed6eaea1fa95fd (diff)
downloadcryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.gz
cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.bz2
cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.zip
remove support for null points, improve docs
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r--docs/hazmat/primitives/asymmetric/utils.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/asymmetric/utils.rst b/docs/hazmat/primitives/asymmetric/utils.rst
index 829edb99..79d14dae 100644
--- a/docs/hazmat/primitives/asymmetric/utils.rst
+++ b/docs/hazmat/primitives/asymmetric/utils.rst
@@ -37,12 +37,11 @@ Asymmetric Utilities
`SEC 1 v2.0`_ section 2.3.3. This function only supports uncompressed
points.
- :param curve: A
+ :param curve: An
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
- provider.
+ instance.
- :param x: The x value of the point.
- :type x: int or `None`
+ :param int x: The x value of the point.
:param int y: The y value of the point.
@@ -59,9 +58,9 @@ Asymmetric Utilities
``x`` and ``y`` integer values. This function only supports uncompressed
points.
- :param curve: A
+ :param curve: An
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurve`
- provider.
+ instance.
:param bytes data: The serialized point byte string.