Home
last modified time | relevance | path

Searched refs:mConf (Results 1 – 2 of 2) sorted by relevance

/openthread-2.7.6/src/core/meshcop/
Ddtls.cpp106 memset(&mConf, 0, sizeof(mConf)); in Dtls()
125 mbedtls_ssl_config_free(&mConf); in FreeMbedtls()
254 mbedtls_ssl_config_init(&mConf); in Setup()
266 …rval = mbedtls_ssl_config_defaults(&mConf, aClient ? MBEDTLS_SSL_IS_CLIENT : MBEDTLS_SSL_IS_SERVER, in Setup()
273 mbedtls_ssl_conf_authmode(&mConf, MBEDTLS_SSL_VERIFY_REQUIRED); in Setup()
277 mbedtls_ssl_conf_authmode(&mConf, MBEDTLS_SSL_VERIFY_NONE); in Setup()
283 mbedtls_ssl_conf_rng(&mConf, mbedtls_ctr_drbg_random, Random::Crypto::MbedTlsContextGet()); in Setup()
284 mbedtls_ssl_conf_min_version(&mConf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_3); in Setup()
285 mbedtls_ssl_conf_max_version(&mConf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_3); in Setup()
288 mbedtls_ssl_conf_ciphersuites(&mConf, mCipherSuites); in Setup()
[all …]
Ddtls.hpp447 mbedtls_ssl_config mConf; member in ot::MeshCoP::Dtls