Merge branch 'docs/move_ecdsa_related_documentation_under_soc_capability' into 'master'

docs: move ecdsa documentation under soc capability for esp_http_client.rst

See merge request espressif/esp-idf!42169
This commit is contained in:
Nilesh Kale
2025-09-25 20:00:04 +08:00
2 changed files with 26 additions and 22 deletions

View File

@@ -44,6 +44,8 @@ A secure element (ATECC608) can be also used for the underlying TLS connection i
.use_secure_element = true,
};
.. only:: SOC_ECDSA_SUPPORTED
Use ECDSA Peripheral for TLS
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

View File

@@ -44,10 +44,12 @@ HTTP 基本请求
.use_secure_element = true,
};
.. only:: SOC_ECDSA_SUPPORTED
为 TLS 使用 ECDSA 外设
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ECDSA 外设可用于 HTTP 客户端连接中的底层 TLS 连接。详细内容请参考 :doc:`ESP-TLS 文档 </api-reference/protocols/esp_tls>` 中的 **ECDSA 外设与 ESP-TLS** 小节。可以按如下方式配置 HTTP 客户端以使用 ECDSA 外设:
ECDSA 外设可用于 HTTP 客户端连接中的底层 TLS 连接。详细内容请参考 :doc:`ESP-TLS 文档 </api-reference/protocols/esp_tls>` 中的 **在 ESP-TLS 中使用 ECDSA 外设** 小节。可以按如下方式配置 HTTP 客户端以使用 ECDSA 外设:
.. code-block:: c