diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-16 04:25:41 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-16 04:25:41 -0700 |
commit | aefd08be25c43576f8a0672cdf857390e044d7ea (patch) | |
tree | 98103fa523afdbc5a9cead9e23245d8a7e6122dc /tests/bindings/test_openssl.py | |
parent | 3be7983bba08821b10b4846f5efa4995020da613 (diff) | |
parent | f54277876b76c867af3ad121bae7581b765fcb7c (diff) | |
download | cryptography-aefd08be25c43576f8a0672cdf857390e044d7ea.tar.gz cryptography-aefd08be25c43576f8a0672cdf857390e044d7ea.tar.bz2 cryptography-aefd08be25c43576f8a0672cdf857390e044d7ea.zip |
Merge pull request #72 from reaperhulk/camellia-support
Camellia support
Diffstat (limited to 'tests/bindings/test_openssl.py')
-rw-r--r-- | tests/bindings/test_openssl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py index b23c4ccc..e5b78d18 100644 --- a/tests/bindings/test_openssl.py +++ b/tests/bindings/test_openssl.py @@ -28,3 +28,6 @@ class TestOpenSSL(object): for every OpenSSL. """ assert api.openssl_version_text().startswith("OpenSSL") + + def test_supports_cipher(self): + assert api.supports_cipher("not-a-real-cipher") is False |