--- a/test/sslcorrupttest.c +++ b/test/sslcorrupttest.c @@ -160,7 +160,8 @@ static int setup_cipher_list() for (numciphers = 0, i = 0; i < sk_SSL_CIPHER_num(sk_ciphers); i++) { const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(sk_ciphers, i); - if (SSL_CIPHER_get_auth_nid(cipher) == NID_auth_rsa) + if (SSL_CIPHER_get_auth_nid(cipher) == NID_auth_rsa && + SSL_CIPHER_get_cipher_nid(cipher) != NID_idea_cbc) cipher_list[numciphers++] = SSL_CIPHER_get_name(cipher); } TEST_check(numciphers != 0);