We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf452c commit 3301d03Copy full SHA for 3301d03
src/WiFi.cpp
@@ -314,7 +314,7 @@ int WiFiClass::init()
314
315
if (nmdrv_firm_ver >= M2M_MAKE_VERSION(19, 5, 0)) {
316
// enable AES-128 and AES-256 Ciphers, if firmware is 19.5.0 or higher
317
- m2m_ssl_set_active_ciphersuites(SSL_NON_ECC_CIPHERS_AES_128 | SSL_NON_ECC_CIPHERS_AES_256);
+ m2m_ssl_set_active_ciphersuites(SSL_CIPHER_RSA_WITH_AES_128_CBC_SHA | SSL_CIPHER_RSA_WITH_AES_128_CBC_SHA256 | SSL_CIPHER_RSA_WITH_AES_128_GCM_SHA256 | SSL_CIPHER_RSA_WITH_AES_256_CBC_SHA | SSL_CIPHER_RSA_WITH_AES_256_CBC_SHA256);
318
}
319
320
#ifdef CONF_PERIPH
0 commit comments