diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 14:15:56 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 14:15:56 -0600 |
commit | 873a6dae7cd93aa581ae9068837d285ce7834c26 (patch) | |
tree | 07a551cb5b8355fce5b86b74fa3955eb67ac9bdf | |
parent | 23532b67d0027ad343b056cfb4bbb7a363c5145a (diff) | |
parent | 87bc4045b44c515b61b45c2d51c2e38fd1bf43e9 (diff) | |
download | cryptography-873a6dae7cd93aa581ae9068837d285ce7834c26.tar.gz cryptography-873a6dae7cd93aa581ae9068837d285ce7834c26.tar.bz2 cryptography-873a6dae7cd93aa581ae9068837d285ce7834c26.zip |
Merge pull request #631 from alex/docs-fix
Fixed some sphinx linkification issues
-rw-r--r-- | docs/hazmat/primitives/rsa.rst | 8 |
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 |