esp_https_server: Enable secure element support.

Closes https://github.com/espressif/esp-idf/issues/8286
This commit is contained in:
Aditya Patwardhan
2022-03-27 14:31:30 +05:30
parent 2cf6399cd5
commit 4c58685c00
4 changed files with 59 additions and 13 deletions

View File

@@ -80,6 +80,9 @@ struct httpd_ssl_config {
/** Enable tls session tickets */
bool session_tickets;
/** Enable secure element for server session */
bool use_secure_element;
/** User callback for esp_https_server */
esp_https_server_user_cb *user_cb;
};