wolfssl.com now requires ECDHE or static RSA

This commit is contained in:
toddouska
2015-09-24 12:19:38 -07:00
parent 465622d4e0
commit 42d94a0f7f

View File

@@ -502,8 +502,9 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
#endif
#if !defined(HAVE_ECC) && !defined(WOLFSSL_STATIC_RSA)
if (!XSTRNCMP(domain, "www.google.com", 14)) {
done = 1; /* google needs ECDHE or static RSA */
if (!XSTRNCMP(domain, "www.google.com", 14) ||
!XSTRNCMP(domain, "www.wolfssl.com", 15)) {
done = 1; /* google/wolfssl need ECDHE or static RSA */
}
#endif