mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 1831f8e4d7
			
		
	
	
	1831f8e4d7
	
	
	
		
			
			Remove TLSv1.1 from the default tls_version system variable. Output a warning if TLSv1.0 or TLSv1.1 are selected. Thanks Tingyao Nian for the feature request.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			792 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Tests for SSL connections, only run if mysqld is compiled
 | |
| # with support for SSL.
 | |
| 
 | |
| -- source include/have_ssl_communication.inc
 | |
| --exec $MYSQL --host=localhost --ssl -e "show status like 'ssl_version';"
 | |
| --error 1
 | |
| --exec $MYSQL --host=localhost --ssl --tls_version=TLSv1.2 -e "show status like 'ssl_version';"
 | |
| --error 1
 | |
| --exec $MYSQL --host=localhost --ssl --tls_version=TLSv1.1 -e "show status like 'ssl_version';"
 | |
| --exec $MYSQL --host=localhost --ssl --tls_version=TLSv1.0 -e "show status like 'ssl_version';"
 | |
| --exec $MYSQL --host=localhost --ssl -e "select @@tls_version;"
 | |
| 
 | |
| call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
 | |
| --let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err
 | |
| --let SEARCH_PATTERN= TLSv1.0 and TLSv1.1 are insecure
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 |