Skip to content

Commit

Permalink
Removed DHE SSL ciphers to fix issue #270
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocketct authored and sandeepmistry committed Jul 2, 2019
1 parent abf452c commit 3301d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WiFi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ int WiFiClass::init()

if (nmdrv_firm_ver >= M2M_MAKE_VERSION(19, 5, 0)) {
// enable AES-128 and AES-256 Ciphers, if firmware is 19.5.0 or higher
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);
}

#ifdef CONF_PERIPH
Expand Down

0 comments on commit 3301d03

Please sign in to comment.