diff options
author | David Reid <dreid@dreid.org> | 2013-10-24 14:41:17 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-10-24 14:41:17 -0700 |
commit | 488c79487873d7c145bbd4afb81826f24234e500 (patch) | |
tree | 0fbc2d67fba293ada8e9f9893e639b648a6bda4e | |
parent | 9188b01511849d3731e838decfcaece475d5d7ba (diff) | |
download | cryptography-488c79487873d7c145bbd4afb81826f24234e500.tar.gz cryptography-488c79487873d7c145bbd4afb81826f24234e500.tar.bz2 cryptography-488c79487873d7c145bbd4afb81826f24234e500.zip |
Don't forget to provide an interface.
-rw-r--r-- | cryptography/bindings/openssl/backend.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |