Change default min TLS version to TLS 1.0
This commit is contained in:
parent
d16df8f60a
commit
8c8be1ebbb
10 changed files with 16 additions and 31 deletions
programs/ssl
|
@ -168,9 +168,6 @@ static void *handle_ssl_connection( void *data )
|
|||
ssl_set_endpoint( &ssl, SSL_IS_SERVER );
|
||||
ssl_set_authmode( &ssl, SSL_VERIFY_NONE );
|
||||
|
||||
/* SSLv3 is deprecated, set minimum to TLS 1.0 */
|
||||
ssl_set_min_version( &ssl, SSL_MAJOR_VERSION_3, SSL_MINOR_VERSION_1 );
|
||||
|
||||
ssl_set_rng( &ssl, ctr_drbg_random, &ctr_drbg );
|
||||
ssl_set_dbg( &ssl, my_mutexed_debug, stdout );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue