Home
last modified time | relevance | path

Searched refs:etm (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/programs/ssl/
Dssl_client2.c528 int etm; /* negotiate encrypt then mac? */ member
978 opt.etm = DFL_ETM; in main()
1245 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break; in main()
1246 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break; in main()
1896 if (opt.etm != DFL_ETM) { in main()
1897 mbedtls_ssl_conf_encrypt_then_mac(&conf, opt.etm); in main()
Dssl_server2.c676 int etm; /* allow negotiation of encrypt-then-MAC? */ member
1766 opt.etm = DFL_ETM; in main()
2168 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break; in main()
2169 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break; in main()
2911 if (opt.etm != DFL_ETM) { in main()
2912 mbedtls_ssl_conf_encrypt_then_mac(&conf, opt.etm); in main()
/openthread-latest/third_party/mbedtls/repo/tests/include/test/
Dssl_helpers.h518 int etm, int tag_mode,
/openthread-latest/third_party/mbedtls/repo/tests/src/test_helpers/
Dssl_helpers.c1253 int etm, int tag_mode, in mbedtls_test_ssl_build_transforms() argument
1387 etm == MBEDTLS_SSL_ETM_DISABLED) { in mbedtls_test_ssl_build_transforms()
1434 t_out->encrypt_then_mac = etm; in mbedtls_test_ssl_build_transforms()
1435 t_in->encrypt_then_mac = etm; in mbedtls_test_ssl_build_transforms()
1437 ((void) etm); in mbedtls_test_ssl_build_transforms()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h4376 void mbedtls_ssl_conf_encrypt_then_mac(mbedtls_ssl_config *conf, char etm);
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ssl.function1225 int etm, int tag_mode, int ver,
1249 etm, tag_mode, ver,
1356 int etm, int tag_mode, int ver,
1403 etm, tag_mode, ver,
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls.c2950 void mbedtls_ssl_conf_encrypt_then_mac(mbedtls_ssl_config *conf, char etm) in mbedtls_ssl_conf_encrypt_then_mac() argument
2952 conf->encrypt_then_mac = etm; in mbedtls_ssl_conf_encrypt_then_mac()