aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-02-21 19:41:06 +0000
committerAlex Stapleton <alexs@prol.etari.at>2014-02-21 19:41:06 +0000
commit5eed941af250567c3deed07dde4f1d741b1d2cd5 (patch)
treef378c9690bced55d9c2d28c7c9a3f8e5f35109a2
parent88979448981386dcb61f6d8cea9051f290c74ec1 (diff)
downloadcryptography-5eed941af250567c3deed07dde4f1d741b1d2cd5.tar.gz
cryptography-5eed941af250567c3deed07dde4f1d741b1d2cd5.tar.bz2
cryptography-5eed941af250567c3deed07dde4f1d741b1d2cd5.zip
Remove backend arg from the backend interface
I don't know.
-rw-r--r--cryptography/hazmat/backends/interfaces.py2
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.