Home
last modified time | relevance | path

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

/openthread-3.4.0/third_party/mbedtls/repo/tests/
DDescriptions.txt22 renegotiation, SNI, other extensions, etc.
/openthread-3.4.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ssl.data392 DTLS renegotiation: no legacy renegotiation
393 renegotiation:MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION
395 DTLS renegotiation: legacy renegotiation
396 renegotiation:MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION
398 DTLS renegotiation: legacy break handshake
399 renegotiation:MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE
413 DTLS no legacy renegotiation with MFL=512
416 DTLS no legacy renegotiation with MFL=1024
419 DTLS no legacy renegotiation with MFL=2048
422 DTLS no legacy renegotiation with MFL=4096
[all …]
Dtest_suite_ssl.function1977 /* Start test with renegotiation */
1984 * request. All renegotiation should happen during data exchanging */
1997 /* After calling mbedtls_ssl_renegotiate for the client all renegotiation
2001 * renegotiation should happen during data exchanging */
2025 /* Validate buffer sizes after renegotiation */
4369 void renegotiation( int legacy_renegotiation )
4385 void resize_buffers( int mfl, int renegotiation, int legacy_renegotiation,
4393 options.renegotiate = renegotiation;
/openthread-3.4.0/third_party/mbedtls/repo/programs/ssl/
Dssl_client2.c477 int renegotiation; /* enable / disable renegotiation */ member
833 opt.renegotiation = DFL_RENEGOTIATION; in main()
1002 opt.renegotiation = (atoi( q )) ? in main()
1915 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation ); in main()
Dssl_server2.c579 int renegotiation; /* enable / disable renegotiation */ member
1496 opt.renegotiation = DFL_RENEGOTIATION; in main()
1688 opt.renegotiation = (atoi( q )) ? in main()
2799 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation ); in main()
/openthread-3.4.0/third_party/mbedtls/repo/programs/
DREADME.md91 … For example, there are options to select ciphersuites, or to force a renegotiation. These options…
/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Dssl.h3583 void mbedtls_ssl_conf_renegotiation( mbedtls_ssl_config *conf, int renegotiation );
/openthread-3.4.0/third_party/mbedtls/repo/
DChangeLog1306 * Reduce RAM consumption during session renegotiation by not storing
2281 The issue could only happen client-side with renegotiation enabled.
2302 * Fix SSLv3 renegotiation behaviour and stop processing data received from
2303 peer after sending a fatal alert to refuse a renegotiation attempt.
2400 * Fix incorrect renegotiation condition in ssl_check_ctr_renegotiate() that
2403 renegotiation routines at unexpected times when the protocol is DTLS. Found
2858 (support for renegotiation now needs explicit enabling in config.h).
3067 * Support for renegotiation can now be disabled at compile-time
3139 * Server-initiated renegotiation would fail with non-blocking I/O if the
3140 write callback returned WANT_WRITE when requesting renegotiation.
[all …]
DREADME.md185 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e…
/openthread-3.4.0/third_party/mbedtls/repo/library/
Dssl_tls.c4949 void mbedtls_ssl_conf_renegotiation( mbedtls_ssl_config *conf, int renegotiation ) in mbedtls_ssl_conf_renegotiation() argument
4951 conf->disable_renegotiation = renegotiation; in mbedtls_ssl_conf_renegotiation()