diff options
-rw-r--r-- | cryptography/hazmat/backends/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 7371ca1e..da41532d 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -109,7 +109,7 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)): class OpenSSLSerializationBackend(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod - def load_openssl_pem_private_key(self, data, password, backend): + def load_openssl_pem_private_key(self, data, password): """ Load a private key from PEM encoded data, using password if the data is encrypted. |