aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 0a26526b..7371ca1e 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(data, password, backend):
+ def load_openssl_pem_private_key(self, data, password, backend):
"""
Load a private key from PEM encoded data, using password if the data
is encrypted.