ESP-IDF
tls_context
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
tls_context
tls_context struct
Syntax
Show:
Summary
Declaration
from
tls_mbedtls.c:76
typedef
struct
tls_context
{
mbedtls_ssl_context
ssl
;
mbedtls_entropy_context
entropy
;
mbedtls_ctr_drbg_context
ctr_drbg
;
mbedtls_ssl_config
conf
;
mbedtls_x509_crt
cacert
;
mbedtls_x509_crt
*
cacert_ptr
;
mbedtls_x509_crt
clientcert
;
mbedtls_pk_context
clientkey
;
int
ciphersuite
[
MAX_CIPHERSUITE
]
;
}
tls_context_t
;
Fields
Field
Declared as
Description
tls_context::ssl
mbedtls_ssl_context
TLS/SSL context.
tls_context::entropy
mbedtls_entropy_context
mbedTLS entropy context structure.
tls_context::ctr_drbg
mbedtls_ctr_drbg_context
mbedTLS ctr drbg context structure.
tls_context::conf
mbedtls_ssl_config
TLS/SSL config to be shared structures.
tls_context::cacert
mbedtls_x509_crt
Container for X.509 CA certificate.
tls_context::cacert_ptr
mbedtls_x509_crt
*
Pointer to the cacert being used.
tls_context::clientcert
mbedtls_x509_crt
Container for X.509 client certificate.
tls_context::clientkey
mbedtls_pk_context
Private key of client certificate.
tls_context::ciphersuite
int
[
MAX_CIPHERSUITE
]
Related Functions
Found 8 other functions taking a
tls_context
argument:
Function
tls_mbedtls_cleanup()
tls_mbedtls_conn_delete()
set_pki_context()
set_ca_cert()
tls_enable_sha1_config()
tls_set_ciphersuite()
set_client_config()
tls_create_mbedtls_handle()
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out