diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-26 08:54:38 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-26 08:54:38 -0500 |
commit | 1b760f1fed81f90506f776b70d2a0eb129ff27b7 (patch) | |
tree | d2bdcb9815b8361620e0955cd6539ef88bcb14e8 /docs/hazmat | |
parent | 342d2e4cd83519d80abb12de16b7d893769a7c32 (diff) | |
download | cryptography-1b760f1fed81f90506f776b70d2a0eb129ff27b7.tar.gz cryptography-1b760f1fed81f90506f776b70d2a0eb129ff27b7.tar.bz2 cryptography-1b760f1fed81f90506f776b70d2a0eb129ff27b7.zip |
improve language in generate_rsa_parameters_supported docs
Diffstat (limited to 'docs/hazmat')
-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 238c2e75..78a35cd9 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -279,9 +279,9 @@ A specific ``backend`` may provide one or more of these interfaces. Check if the specified parameters are supported for key generation by the backend. - :param int public_exponent: The public exponent desired. + :param int public_exponent: The public exponent. - :param int key_size: The length in bits of the modulus desired. + :param int key_size: The bit length of the generated modulus. .. method:: decrypt_rsa(private_key, ciphertext, padding) |