Home
last modified time | relevance | path

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

/net-tools-3.4.0/mbedtls-2.4.0/tests/
DDescriptions.txt22 renegotiation, SNI, other extensions, etc.
/net-tools-3.4.0/mbedtls-2.4.0/programs/ssl/
Dssl_client2.c296 int renegotiation; /* enable / disable renegotiation */ member
487 opt.renegotiation = DFL_RENEGOTIATION; in main()
589 opt.renegotiation = (atoi( q )) ? MBEDTLS_SSL_RENEGOTIATION_ENABLED : in main()
1168 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation ); in main()
Dssl_server2.c376 int renegotiation; /* enable / disable renegotiation */ member
919 opt.renegotiation = DFL_RENEGOTIATION; in main()
1019 opt.renegotiation = (atoi( q )) ? MBEDTLS_SSL_RENEGOTIATION_ENABLED : in main()
1753 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation ); in main()
/net-tools-3.4.0/mbedtls-2.4.0/include/mbedtls/
Dssl.h2112 void mbedtls_ssl_conf_renegotiation( mbedtls_ssl_config *conf, int renegotiation );
/net-tools-3.4.0/mbedtls-2.4.0/
DChangeLog421 (support for renegotiation now needs explicit enabling in config.h).
630 * Support for renegotiation can now be disabled at compile-time
702 * Server-initiated renegotiation would fail with non-blocking I/O if the
703 write callback returned WANT_WRITE when requesting renegotiation.
743 * Add server-side enforcement of sent renegotiation requests
906 * Forbid change of server certificate during renegotiation to prevent
1211 * Forbid change of server certificate during renegotiation to prevent
1308 * Secure renegotiation extension should only be sent in case client
1309 supports secure renegotiation
DREADME.md148 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e…
/net-tools-3.4.0/mbedtls-2.4.0/library/
Dssl_tls.c6108 void mbedtls_ssl_conf_renegotiation( mbedtls_ssl_config *conf, int renegotiation ) in mbedtls_ssl_conf_renegotiation() argument
6110 conf->disable_renegotiation = renegotiation; in mbedtls_ssl_conf_renegotiation()