Home
last modified time | relevance | path

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

/net-tools-3.6.0/mbedtls-2.4.0/programs/ssl/
Dssl_client2.c319 int etm; /* negotiate encrypt then mac? */ member
509 opt.etm = DFL_ETM; in main()
664 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break; in main()
665 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break; in main()
1123 if( opt.etm != DFL_ETM ) in main()
1124 mbedtls_ssl_conf_encrypt_then_mac( &conf, opt.etm ); in main()
Dssl_server2.c396 int etm; /* allow negotiation of encrypt-then-MAC? */ member
945 opt.etm = DFL_ETM; in main()
1174 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break; in main()
1175 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break; in main()
1638 if( opt.etm != DFL_ETM ) in main()
1639 mbedtls_ssl_conf_encrypt_then_mac( &conf, opt.etm ); in main()
/net-tools-3.6.0/mbedtls-2.4.0/include/mbedtls/
Dssl.h1997 void mbedtls_ssl_conf_encrypt_then_mac( mbedtls_ssl_config *conf, char etm );
/net-tools-3.6.0/mbedtls-2.4.0/library/
Dssl_tls.c6053 void mbedtls_ssl_conf_encrypt_then_mac( mbedtls_ssl_config *conf, char etm ) in mbedtls_ssl_conf_encrypt_then_mac() argument
6055 conf->encrypt_then_mac = etm; in mbedtls_ssl_conf_encrypt_then_mac()