Searched refs:esp_tls_cfg_t (Results 1 – 12 of 12) sorted by relevance
/hal_espressif-2.7.6/components/esp-tls/ |
D | esp_tls.h | 237 } esp_tls_cfg_t; typedef 388 esp_tls_t *esp_tls_conn_new(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg) … 409 int esp_tls_conn_new_sync(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg, es… 423 esp_tls_t *esp_tls_conn_http_new(const char *url, const esp_tls_cfg_t *cfg); 443 int esp_tls_conn_new_async(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg, e… 459 int esp_tls_conn_http_new_async(const char *url, const esp_tls_cfg_t *cfg, esp_tls_t *tls);
|
D | esp_tls.c | 80 static esp_err_t esp_tls_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg) in esp_tls_handshake() 192 …nst char *host, int hostlen, int port, int *sockfd, const esp_tls_t *tls, const esp_tls_cfg_t *cfg) in esp_tcp_connect() 271 static int esp_tls_low_level_conn(const char *hostname, int hostlen, int port, const esp_tls_cfg_t … in esp_tls_low_level_conn() 361 esp_tls_t *esp_tls_conn_new(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg) in esp_tls_conn_new() 391 int esp_tls_conn_new_sync(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg, es… in esp_tls_conn_new_sync() 419 int esp_tls_conn_new_async(const char *hostname, int hostlen, int port, const esp_tls_cfg_t *cfg, e… in esp_tls_conn_new_async() 441 esp_tls_t *esp_tls_conn_http_new(const char *url, const esp_tls_cfg_t *cfg) in esp_tls_conn_http_new() 463 int esp_tls_conn_http_new_async(const char *url, const esp_tls_cfg_t *cfg, esp_tls_t *tls) in esp_tls_conn_http_new_async()
|
D | esp_tls_mbedtls.c | 44 static esp_err_t esp_set_atecc608a_pki_context(esp_tls_t *tls, esp_tls_cfg_t *cfg); 82 esp_ret = set_client_config(hostname, hostlen, (esp_tls_cfg_t *)cfg, tls); in esp_create_mbedtls_handle() 130 int esp_mbedtls_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg) in esp_mbedtls_handshake() 411 esp_err_t set_client_config(const char *hostname, size_t hostlen, esp_tls_cfg_t *cfg, esp_tls_t *tl… in set_client_config() 510 ret = esp_set_atecc608a_pki_context(tls, (esp_tls_cfg_t *)cfg); in set_client_config() 683 static esp_err_t esp_set_atecc608a_pki_context(esp_tls_t *tls, esp_tls_cfg_t *cfg) in esp_set_atecc608a_pki_context()
|
D | esp_tls_wolfssl.c | 35 static esp_err_t set_client_config(const char *hostname, size_t hostlen, esp_tls_cfg_t *cfg, esp_tl… 122 esp_ret = set_client_config(hostname, hostlen, (esp_tls_cfg_t *)cfg, tls); in esp_create_wolfssl_handle() 150 static esp_err_t set_client_config(const char *hostname, size_t hostlen, esp_tls_cfg_t *cfg, esp_tl… in set_client_config() 326 int esp_wolfssl_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg) in esp_wolfssl_handshake()
|
/hal_espressif-2.7.6/examples/protocols/https_request/main/ |
D | https_request_example_main.c | 71 static void https_get_request(esp_tls_cfg_t cfg) in https_get_request() 140 esp_tls_cfg_t cfg = { in https_get_request_using_crt_bundle() 149 esp_tls_cfg_t cfg = { in https_get_request_using_cacert_buf() 165 esp_tls_cfg_t cfg = { in https_get_request_using_global_ca_store()
|
/hal_espressif-2.7.6/components/esp-tls/private_include/ |
D | esp_tls_mbedtls.h | 31 int esp_mbedtls_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg); 84 esp_err_t set_client_config(const char *hostname, size_t hostlen, esp_tls_cfg_t *cfg, esp_tls_t *tl…
|
D | esp_tls_wolfssl.h | 26 int esp_wolfssl_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg);
|
/hal_espressif-2.7.6/docs/en/api-reference/protocols/ |
D | esp_tls.rst | 9 All the configuration can be specified in the ``esp_tls_cfg_t`` data structure. Once done, TLS comm… 44 …ser should select only one of the following options in the :cpp:type:`esp_tls_cfg_t` structure for… 46 …esp_tls_cfg_t` structure. The ESP-TLS will use the CA certificate present in the buffer to verify … 50 …ave set ``use_global_ca_store = true`` in their respective :cpp:type:`esp_tls_cfg_t` structure. Se… 52 … the pointer to PSK hint and key should be provided to the :cpp:type:`esp_tls_cfg_t` structure. Th… 53 …n no other options for server verification are selected in the :cpp:type:`esp_tls_cfg_t` structure. 131 4) Enable use of ATECC608A in ESP-TLS by providing following config option in `esp_tls_cfg_t` 135 esp_tls_cfg_t cfg = { 161 esp_tls_cfg_t cfg = {
|
D | esp_crt_bundle.rst | 35 esp_tls_cfg_t cfg = {
|
/hal_espressif-2.7.6/examples/protocols/https_x509_bundle/main/ |
D | https_x509_bundle_example_main.c | 62 esp_tls_cfg_t cfg = { in https_get_task()
|
/hal_espressif-2.7.6/examples/protocols/http2_request/components/sh2lib/ |
D | sh2lib.c | 242 esp_tls_cfg_t tls_cfg = { in sh2lib_connect()
|
/hal_espressif-2.7.6/components/tcp_transport/ |
D | transport_ssl.c | 42 esp_tls_cfg_t cfg;
|