Home
last modified time | relevance | path

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

/mbedtls-latest/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.function2805 void renegotiation(int legacy_renegotiation)
2825 void resize_buffers(int mfl, int renegotiation, int legacy_renegotiation,
2833 options.renegotiate = renegotiation;
/mbedtls-latest/tests/
DDescriptions.txt22 renegotiation, SNI, other extensions, etc.
/mbedtls-latest/programs/ssl/
Dssl_client2.c501 int renegotiation; /* enable / disable renegotiation */ member
957 opt.renegotiation = DFL_RENEGOTIATION; in main()
1180 opt.renegotiation = (atoi(q)) ? in main()
1966 mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation); in main()
Dssl_server2.c646 int renegotiation; /* enable / disable renegotiation */ member
1733 opt.renegotiation = DFL_RENEGOTIATION; in main()
2011 opt.renegotiation = (atoi(q)) ? in main()
3057 mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation); in main()
/mbedtls-latest/programs/
DREADME.md89 … For example, there are options to select ciphersuites, or to force a renegotiation. These options…
/mbedtls-latest/include/mbedtls/
Dssl.h4563 void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation);
/mbedtls-latest/
DChangeLog935 * Fix the handling of renegotiation attempts in TLS 1.3. They are now
3096 * Reduce RAM consumption during session renegotiation by not storing
4071 The issue could only happen client-side with renegotiation enabled.
4092 * Fix SSLv3 renegotiation behaviour and stop processing data received from
4093 peer after sending a fatal alert to refuse a renegotiation attempt.
4190 * Fix incorrect renegotiation condition in ssl_check_ctr_renegotiate() that
4193 renegotiation routines at unexpected times when the protocol is DTLS. Found
4648 (support for renegotiation now needs explicit enabling in config.h).
4857 * Support for renegotiation can now be disabled at compile-time
4929 * 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…
/mbedtls-latest/library/
Dssl_tls.c2970 void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation) in mbedtls_ssl_conf_renegotiation() argument
2972 conf->disable_renegotiation = renegotiation; in mbedtls_ssl_conf_renegotiation()