aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-21 12:28:12 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-21 12:28:12 -0600
commit693cc67a927d57da949617b88c302ff8eb7a4bf0 (patch)
treeded0f9ff73e54135a4c19d1cf018426ab6858602
parentc85157b5fb468c2def7bbec97927d258bf099c3a (diff)
downloadcryptography-693cc67a927d57da949617b88c302ff8eb7a4bf0.tar.gz
cryptography-693cc67a927d57da949617b88c302ff8eb7a4bf0.tar.bz2
cryptography-693cc67a927d57da949617b88c302ff8eb7a4bf0.zip
Include 'self' in the interface
-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.