Home
last modified time | relevance | path

Searched refs:renegotiation (Results 1 – 10 of 10) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ssl.data655 DTLS renegotiation: no legacy renegotiation
656 renegotiation:MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION
658 DTLS renegotiation: legacy renegotiation
659 renegotiation:MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION
661 DTLS renegotiation: legacy break handshake
662 renegotiation:MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE
676 DTLS no legacy renegotiation with MFL=512
679 DTLS no legacy renegotiation with MFL=1024
682 DTLS no legacy renegotiation with MFL=2048
685 DTLS no legacy renegotiation with MFL=4096
[all …]
Dtest_suite_ssl.function2792 void renegotiation(int legacy_renegotiation)
2812 void resize_buffers(int mfl, int renegotiation, int legacy_renegotiation,
2820 options.renegotiate = renegotiation;
/openthread-latest/third_party/mbedtls/repo/tests/
DDescriptions.txt22 renegotiation, SNI, other extensions, etc.
/openthread-latest/third_party/mbedtls/repo/programs/ssl/
Dssl_client2.c499 int renegotiation; /* enable / disable renegotiation */ member
948 opt.renegotiation = DFL_RENEGOTIATION; in main()
1170 opt.renegotiation = (atoi(q)) ? in main()
1947 mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation); in main()
Dssl_server2.c646 int renegotiation; /* enable / disable renegotiation */ member
1724 opt.renegotiation = DFL_RENEGOTIATION; in main()
2002 opt.renegotiation = (atoi(q)) ? in main()
3048 mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation); in main()
/openthread-latest/third_party/mbedtls/repo/programs/
DREADME.md89 … For example, there are options to select ciphersuites, or to force a renegotiation. These options…
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h4519 void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation);
/openthread-latest/third_party/mbedtls/repo/
DChangeLog740 * Fix the handling of renegotiation attempts in TLS 1.3. They are now
2901 * Reduce RAM consumption during session renegotiation by not storing
3876 The issue could only happen client-side with renegotiation enabled.
3897 * Fix SSLv3 renegotiation behaviour and stop processing data received from
3898 peer after sending a fatal alert to refuse a renegotiation attempt.
3995 * Fix incorrect renegotiation condition in ssl_check_ctr_renegotiate() that
3998 renegotiation routines at unexpected times when the protocol is DTLS. Found
4453 (support for renegotiation now needs explicit enabling in config.h).
4662 * Support for renegotiation can now be disabled at compile-time
4734 * Server-initiated renegotiation would fail with non-blocking I/O if the
[all …]
DREADME.md247 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e…
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls.c2983 void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation) in mbedtls_ssl_conf_renegotiation() argument
2985 conf->disable_renegotiation = renegotiation; in mbedtls_ssl_conf_renegotiation()