Searched refs:renegotiation (Results 1 – 10 of 10) sorted by relevance
/mbedtls-latest/tests/suites/ |
D | test_suite_ssl.data | 655 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 …]
|
D | test_suite_ssl.function | 2805 void renegotiation(int legacy_renegotiation) 2825 void resize_buffers(int mfl, int renegotiation, int legacy_renegotiation, 2833 options.renegotiate = renegotiation;
|
/mbedtls-latest/tests/ |
D | Descriptions.txt | 22 renegotiation, SNI, other extensions, etc.
|
/mbedtls-latest/programs/ssl/ |
D | ssl_client2.c | 501 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()
|
D | ssl_server2.c | 646 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/ |
D | README.md | 89 … For example, there are options to select ciphersuites, or to force a renegotiation. These options…
|
/mbedtls-latest/include/mbedtls/ |
D | ssl.h | 4563 void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation);
|
/mbedtls-latest/ |
D | ChangeLog | 935 * 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 …]
|
D | README.md | 247 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e…
|
/mbedtls-latest/library/ |
D | ssl_tls.c | 2970 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()
|