4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-12 18:49:34 +00:00

tlsunittest: disable some ciphers

This commit is contained in:
Ivan Romanov 2017-02-06 17:29:01 +05:00
parent 4efa158c31
commit 89800d4341

@ -69,7 +69,9 @@ void TLSUnitTest::testCipherList()
QVERIFY( cipherList.contains("TLS_DHE_DSS_WITH_AES_128_CBC_SHA") );
QVERIFY( cipherList.contains("TLS_RSA_WITH_AES_128_CBC_SHA") );
QVERIFY( cipherList.contains("TLS_RSA_WITH_RC4_128_SHA") );
QVERIFY( cipherList.contains("TLS_RSA_WITH_RC4_128_MD5") );
// Fedora 22 has no TLS_RSA_WITH_RC4_128_MD5
// QVERIFY( cipherList.contains("TLS_RSA_WITH_RC4_128_MD5") );
// Fedora 20 openssl has no this cipher suites.
// I just believe that F20 has the most strict patent rules
@ -96,7 +98,9 @@ void TLSUnitTest::testCipherList()
QVERIFY( cipherList.contains("SSL_DHE_DSS_WITH_AES_128_CBC_SHA") );
QVERIFY( cipherList.contains("SSL_RSA_WITH_AES_128_CBC_SHA") );
QVERIFY( cipherList.contains("SSL_RSA_WITH_RC4_128_SHA") );
QVERIFY( cipherList.contains("SSL_RSA_WITH_RC4_128_MD5") );
// Fedora 22 has no SSL_RSA_WITH_RC4_128_MD5
// QVERIFY( cipherList.contains("SSL_RSA_WITH_RC4_128_MD5") );
// QVERIFY( cipherList.contains("SSL_DHE_RSA_WITH_DES_CBC_SHA") );
// QVERIFY( cipherList.contains("SSL_DHE_DSS_WITH_DES_CBC_SHA") );