diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/getting-started.rst | 7 | ||||
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 16 |
2 files changed, 20 insertions, 3 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst index 3d9012eb..4337b47c 100644 --- a/docs/development/getting-started.rst +++ b/docs/development/getting-started.rst @@ -2,9 +2,10 @@ Getting started =============== Working on ``cryptography`` requires the installation of a small number of -development dependencies. These are listed in ``dev-requirements.txt`` and they -can be installed in a `virtualenv`_ using `pip`_. Once you've installed the -dependencies, install ``cryptography`` in ``editable`` mode. For example: +development dependencies in addition to the dependencies for :doc:`/installation`. +These are listed in ``dev-requirements.txt`` and they can be installed in a +`virtualenv`_ using `pip`_. Once you've installed the dependencies, install +``cryptography`` in ``editable`` mode. For example: .. code-block:: console diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 2c91b5a2..5dc7e2f0 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -100,6 +100,7 @@ Elliptic Curve Signature Algorithms ----------------------------------- .. class:: ECDSA(algorithm) + .. versionadded:: 0.5 The ECDSA signature algorithm first standardized in NIST publication @@ -134,90 +135,105 @@ generation process. .. class:: SECT571K1 + .. versionadded:: 0.5 SECG curve ``sect571k1``. Also called NIST K-571. .. class:: SECT409K1 + .. versionadded:: 0.5 SECG curve ``sect409k1``. Also called NIST K-409. .. class:: SECT283K1 + .. versionadded:: 0.5 SECG curve ``sect283k1``. Also called NIST K-283. .. class:: SECT233K1 + .. versionadded:: 0.5 SECG curve ``sect233k1``. Also called NIST K-233. .. class:: SECT163K1 + .. versionadded:: 0.5 SECG curve ``sect163k1``. Also called NIST K-163. .. class:: SECT571R1 + .. versionadded:: 0.5 SECG curve ``sect571r1``. Also called NIST B-571. .. class:: SECT409R1 + .. versionadded:: 0.5 SECG curve ``sect409r1``. Also called NIST B-409. .. class:: SECT283R1 + .. versionadded:: 0.5 SECG curve ``sect283r1``. Also called NIST B-283. .. class:: SECT233R1 + .. versionadded:: 0.5 SECG curve ``sect233r1``. Also called NIST B-233. .. class:: SECT163R2 + .. versionadded:: 0.5 SECG curve ``sect163r2``. Also called NIST B-163. .. class:: SECP521R1 + .. versionadded:: 0.5 SECG curve ``secp521r1``. Also called NIST P-521. .. class:: SECP384R1 + .. versionadded:: 0.5 SECG curve ``secp384r1``. Also called NIST P-384. .. class:: SECP256R1 + .. versionadded:: 0.5 SECG curve ``secp256r1``. Also called NIST P-256. .. class:: SECT224R1 + .. versionadded:: 0.5 SECG curve ``secp224r1``. Also called NIST P-224. .. class:: SECP192R1 + .. versionadded:: 0.5 SECG curve ``secp192r1``. Also called NIST P-192. |