diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-27 12:29:58 +0900 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-27 12:30:29 +0900 |
commit | e4150bcc07fb2c68e3c860c31766b4282bba8740 (patch) | |
tree | b688eae7a07be540e0cb2fd5ae44836afc8bf5d4 /docs | |
parent | 3568563e0ecdec07606c8b5f3fed6eaea1fa95fd (diff) | |
download | cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.gz cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.tar.bz2 cryptography-e4150bcc07fb2c68e3c860c31766b4282bba8740.zip |
remove support for null points, improve docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/utils.rst | 11 |
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. |