diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-02-08 17:23:46 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-02-08 17:27:35 +0000 |
commit | e009ad22284ff2bf1f415a13f203fcdcd92d8bf8 (patch) | |
tree | 2a953071d0a478c84c1f78781b2d5053eb4d2600 /cryptography | |
parent | 96f31fd81b9d5f29adf5290e1630a79d89039538 (diff) | |
download | cryptography-e009ad22284ff2bf1f415a13f203fcdcd92d8bf8.tar.gz cryptography-e009ad22284ff2bf1f415a13f203fcdcd92d8bf8.tar.bz2 cryptography-e009ad22284ff2bf1f415a13f203fcdcd92d8bf8.zip |
s/bit_length/key_size/ (again)
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/backends/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 630e7079..b867f26a 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -85,8 +85,8 @@ class PBKDF2HMACBackend(six.with_metaclass(abc.ABCMeta)): class RSABackend(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod - def generate_rsa_private_key(self, public_exponent, bit_length): + def generate_rsa_private_key(self, public_exponent, key_size): """ Generate an RSAPrivateKey instance with public_exponent and a modulus - of bit_length bits. + of key_size bits. """ |