From dbc71f2ff451b35a394adb0c145ddb15edc853e6 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 18 Nov 2015 17:12:06 -0500 Subject: Add cipher test for ECDH+aRSA --- test/test_cipher.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_cipher.py b/test/test_cipher.py index 5b1a348..683fc77 100644 --- a/test/test_cipher.py +++ b/test/test_cipher.py @@ -237,6 +237,9 @@ class test_ciphers(object): def test_additive_RSA_RC4(self): assert_equal_openssl("RSA:+RC4", "RSA:+RC4:-SSLv2:-SEED:-IDEA") + def test_additive_ECDH_plus_aRSA(self): + assert_equal_openssl("ECDH+aRSA", "ECDH+aRSA") + def test_negative_plus_RSA_MD5(self): assert_equal_openssl("-RC2:RSA+MD5", "-RC2:RSA+MD5:-SSLv2") -- cgit