Skip to content

Commit e4fba01

Browse files
committed
Merge branch 'fix/cleanup_esp_tls_wolfssl' into 'master'
Cleanup(esp-tls): Remove unused config option from esp-wolfssl See merge request espressif/esp-idf!33699
2 parents 7752c1b + 238615c commit e4fba01

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

components/esp-tls/Kconfig

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,6 @@ menu "ESP-TLS"
100100
with a server which has a fake identity, provided that the server certificate
101101
is not provided either through API or other mechanism like ca_store etc.
102102

103-
config ESP_WOLFSSL_SMALL_CERT_VERIFY
104-
bool "Enable SMALL_CERT_VERIFY"
105-
depends on ESP_TLS_USING_WOLFSSL
106-
default y
107-
help
108-
Enables server verification with Intermediate CA cert, does not authenticate full chain
109-
of trust upto the root CA cert (After Enabling this option client only needs to have Intermediate
110-
CA certificate of the server to authenticate server, root CA cert is not necessary).
111-
112103
config ESP_DEBUG_WOLFSSL
113104
bool "Enable debug logs for wolfSSL"
114105
depends on ESP_TLS_USING_WOLFSSL

examples/protocols/https_server/simple/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
22
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
33

4-
# HTTP server with SSL support using OpenSSL
4+
# HTTPS server
55

6-
This example creates a SSL server that returns a simple HTML page when you visit its root URL.
6+
This example creates an HTTPS server with SSL/TLS support using **ESP-TLS** that serves a simple HTML page when you visit its root URL.
77

8-
See the `esp_https_server` component documentation for details.
8+
For more information, refer to the [esp_https_server component documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_https_server.html).
99

1010
## How to use example
1111
Before project configuration and build, be sure to set the correct chip target using `idf.py set-target <chip_name>`.

examples/protocols/https_server/wss_server/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
22
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
33

4-
# HTTP Websocket server with SSL support
4+
# HTTPS Websocket server
55

6-
This example creates a SSL server and employs a simple Websocket request handler. It demonstrates handling multiple clients from the server including:
6+
This example creates an HTTPS server with SSL/TLS support using ESP-TLS and employs a simple Websocket request handler. It demonstrates handling multiple clients from the server including:
77
* PING-PONG mechanism
88
* Sending asynchronous messages to all clients
99

10-
See the `esp_https_server` component documentation for details.
10+
For more information, refer to the [esp_https_server component documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_https_server.html).
1111

1212

1313
### Websocket support in `http_server`

0 commit comments

Comments
 (0)