From 488c79487873d7c145bbd4afb81826f24234e500 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 24 Oct 2013 14:41:17 -0700 Subject: Don't forget to provide an interface. --- cryptography/bindings/openssl/backend.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cryptography/bindings/openssl/backend.py b/cryptography/bindings/openssl/backend.py index 99124e1c..4ec16189 100644 --- a/cryptography/bindings/openssl/backend.py +++ b/cryptography/bindings/openssl/backend.py @@ -111,6 +111,7 @@ class GetCipherByName(object): return backend.lib.EVP_get_cipherbyname(cipher_name.encode("ascii")) +@interfaces.register(interfaces.CipherContext) class _CipherContext(object): _ENCRYPT = 1 _DECRYPT = 0 -- cgit v1.2.3