Home
last modified time | relevance | path

Searched refs:encrypt_then_mac (Results 1 – 8 of 8) sorted by relevance

/third_party/openssl/test/
Dext_internal_test.c55 EXT_ENTRY(encrypt_then_mac),
/third_party/mbedtls/library/
Dssl_tls.c414 int encrypt_then_mac,
2394 int encrypt_then_mac) in mbedtls_ssl_get_actual_mode() argument
2397 if (encrypt_then_mac == MBEDTLS_SSL_ETM_ENABLED && in mbedtls_ssl_get_actual_mode()
2402 (void) encrypt_then_mac; in mbedtls_ssl_get_actual_mode()
2418 int encrypt_then_mac = 0; in mbedtls_ssl_get_mode_from_transform() local
2420 encrypt_then_mac = transform->encrypt_then_mac; in mbedtls_ssl_get_mode_from_transform()
2422 return mbedtls_ssl_get_actual_mode(base_mode, encrypt_then_mac); in mbedtls_ssl_get_mode_from_transform()
2427 int encrypt_then_mac, in mbedtls_ssl_get_mode_from_ciphersuite() argument
2453 int encrypt_then_mac = 0; in mbedtls_ssl_get_mode_from_ciphersuite() local
2455 return mbedtls_ssl_get_actual_mode(base_mode, encrypt_then_mac); in mbedtls_ssl_get_mode_from_ciphersuite()
[all …]
Dssl_tls12_server.c441 if (ssl->conf->encrypt_then_mac == MBEDTLS_SSL_ETM_ENABLED) { in ssl_parse_encrypt_then_mac_ext()
442 ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_ENABLED; in ssl_parse_encrypt_then_mac_ext()
1745 ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_DISABLED; in ssl_write_encrypt_then_mac_ext()
1749 ssl->session_negotiate->encrypt_then_mac, in ssl_write_encrypt_then_mac_ext()
1753 ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_DISABLED; in ssl_write_encrypt_then_mac_ext()
1757 if (ssl->session_negotiate->encrypt_then_mac == MBEDTLS_SSL_ETM_DISABLED) { in ssl_write_encrypt_then_mac_ext()
Dssl_misc.h1125 int encrypt_then_mac; /*!< flag for EtM activation */ member
2616 int encrypt_then_mac,
Dssl_tls12_client.c306 if (ssl->conf->encrypt_then_mac == MBEDTLS_SSL_ETM_DISABLED) { in ssl_write_encrypt_then_mac_ext()
743 if (ssl->conf->encrypt_then_mac == MBEDTLS_SSL_ETM_DISABLED || in ssl_parse_encrypt_then_mac_ext()
756 ssl->session_negotiate->encrypt_then_mac = MBEDTLS_SSL_ETM_ENABLED; in ssl_parse_encrypt_then_mac_ext()
/third_party/mbedtls/include/mbedtls/
Dssl.h1240 int MBEDTLS_PRIVATE(encrypt_then_mac); /*!< flag for EtM activation */
1353 uint8_t MBEDTLS_PRIVATE(encrypt_then_mac); /*!< negotiate encrypt-then-mac? */
/third_party/mbedtls/tests/src/test_helpers/
Dssl_helpers.c1262 t_out->encrypt_then_mac = etm; in mbedtls_test_ssl_build_transforms()
1263 t_in->encrypt_then_mac = etm; in mbedtls_test_ssl_build_transforms()
1531 session->encrypt_then_mac = 1; in mbedtls_test_ssl_tls12_populate_session()
/third_party/mbedtls/tests/suites/
Dtest_suite_ssl.function2190 TEST_ASSERT(original.encrypt_then_mac == restored.encrypt_then_mac);