Skip to content

Commit a2895b9

Browse files
committed
Some ciphers removed (MD5,3DES)
status of auto calibration added to status page
1 parent 5ef4f02 commit a2895b9

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

airrohr-firmware/airrohr-firmware.ino

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,12 +1660,6 @@ static void webserver_status() {
16601660
page_content += FPSTR(EMPTY_ROW);
16611661
add_table_row_from_value(page_content, FPSTR(SENSORS_SDS011), last_value_SDS_version);
16621662
}
1663-
if (cfg::scd30_read) {
1664-
if (scd30.getAutoSelfCalibration() == true)
1665-
add_table_row_from_value(page_content, F("SCD30 Auto Calibration"), "enabled");
1666-
else
1667-
add_table_row_from_value(page_content, F("SCD30 Auto Calibration"), "disabled");
1668-
}
16691663

16701664
page_content += FPSTR(EMPTY_ROW);
16711665
page_content += F("<tr><td colspan='2'><b>" INTL_ERROR "</b></td></tr>");
@@ -2228,7 +2222,6 @@ static WiFiClient* getNewLoggerWiFiClient(const LoggerEntry logger) {
22282222
#if defined(ESP8266)
22292223
static_cast<WiFiClientSecure*>(_client)->setSession(loggerConfigs[logger].session);
22302224
static_cast<WiFiClientSecure*>(_client)->setBufferSizes(1024, TCP_MSS > 1024 ? 2048 : 1024);
2231-
static_cast<WiFiClientSecure*>(_client)->setCiphers(suites_P, sizeof(suites_P)/sizeof(suites_P[0]));
22322225
static_cast<WiFiClientSecure*>(_client)->setSSLVersion(BR_TLS12, BR_TLS12);
22332226
switch (logger) {
22342227
case Loggeraircms:

airrohr-firmware/defines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ static const uint16_t suites_P[] PROGMEM = {
164164
BR_TLS_RSA_WITH_AES_256_CBC_SHA256,
165165
BR_TLS_RSA_WITH_AES_128_CBC_SHA,
166166
BR_TLS_RSA_WITH_AES_256_CBC_SHA,
167-
};
167+
};

0 commit comments

Comments
 (0)