aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-17 11:34:26 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-17 11:34:26 -0800
commit87bc4045b44c515b61b45c2d51c2e38fd1bf43e9 (patch)
tree07a551cb5b8355fce5b86b74fa3955eb67ac9bdf /docs/hazmat/primitives
parent23532b67d0027ad343b056cfb4bbb7a363c5145a (diff)
downloadcryptography-87bc4045b44c515b61b45c2d51c2e38fd1bf43e9.tar.gz
cryptography-87bc4045b44c515b61b45c2d51c2e38fd1bf43e9.tar.bz2
cryptography-87bc4045b44c515b61b45c2d51c2e38fd1bf43e9.zip
Fixed some sphinx linkification issues
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r--docs/hazmat/primitives/rsa.rst8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/hazmat/primitives/rsa.rst b/docs/hazmat/primitives/rsa.rst
index e7ec4749..4e1f8e49 100644
--- a/docs/hazmat/primitives/rsa.rst
+++ b/docs/hazmat/primitives/rsa.rst
@@ -7,16 +7,13 @@ RSA
`RSA`_ is a `public-key`_ algorithm for encrypting and signing messages.
-.. class:: RSAPrivateKey(p, q, private_exponent, dmp1, dmq1, iqmp,
- public_exponent, modulus)
+.. class:: RSAPrivateKey(p, q, private_exponent, dmp1, dmq1, iqmp, public_exponent, modulus)
.. versionadded:: 0.2
An RSA private key is required for decryption and signing of messages.
- You should use
- :meth:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey.generate`
- to generate new keys.
+ You should use :meth:`~generate` to generate new keys.
.. warning::
This method only checks a limited set of properties of its arguments.
@@ -53,6 +50,7 @@ RSA
provider.
:return: A new instance of ``RSAPrivateKey``.
+
.. class:: RSAPublicKey(public_exponent, modulus)
.. versionadded:: 0.2