diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-08 11:46:43 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-08 11:46:43 -0600 |
commit | 973e7ccc37816bd922afac3a34f4c139c9134029 (patch) | |
tree | 2a953071d0a478c84c1f78781b2d5053eb4d2600 /docs | |
parent | 96f31fd81b9d5f29adf5290e1630a79d89039538 (diff) | |
parent | e009ad22284ff2bf1f415a13f203fcdcd92d8bf8 (diff) | |
download | cryptography-973e7ccc37816bd922afac3a34f4c139c9134029.tar.gz cryptography-973e7ccc37816bd922afac3a34f4c139c9134029.tar.bz2 cryptography-973e7ccc37816bd922afac3a34f4c139c9134029.zip |
Merge pull request #584 from public/key_size
s/bit_length/key_size/ (again)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 444ecb46..db68a646 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -199,12 +199,12 @@ A specific ``backend`` may provide one or more of these interfaces. A backend with methods for using RSA. - .. method:: generate_rsa_private_key(public_exponent, bit_length) + .. method:: generate_rsa_private_key(public_exponent, key_size) :param int public_exponent: The public exponent of the new key. Often one of the small Fermat primes 3, 5, 17, 257 or 65537. - :param int bit_length: The length in bits of the modulus. Should be + :param int key_size: The length in bits of the modulus. Should be at least 2048. :return: A new instance of a |