mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	- Add test case which runs the same tests as ssl.test but with a different DES encrypted key mysql-test/std_data/server-key-des.pem: BitKeeper file /home/msvensson/mysql/bug21868/my50-bug21868/mysql-test/std_data/server-key-des.pem mysql-test/std_data/server-cert-des.pem: BitKeeper file /home/msvensson/mysql/bug21868/my50-bug21868/mysql-test/std_data/server-cert-des.pem mysql-test/r/ssl_des.result: New BitKeeper file ``mysql-test/r/ssl_des.result'' mysql-test/t/ssl_des-master.opt: New BitKeeper file ``mysql-test/t/ssl_des-master.opt'' mysql-test/t/ssl_des.test: New BitKeeper file ``mysql-test/t/ssl_des.test''
		
			
				
	
	
		
			20 lines
		
	
	
		
			458 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			458 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Tell the server to use a DES-encrypted cert
 | |
| # then turn on ssl between the client and server
 | |
| # and run a number of standard tests
 | |
| 
 | |
| -- source include/have_openssl.inc
 | |
| 
 | |
| # Connect by ip to avoid turning on "ssl-verify-server-cert"
 | |
| connect (ssl_con,127.0.0.1,root,,,,$MASTER_MYPORT,SSL);
 | |
| 
 | |
| # Check ssl turned on
 | |
| SHOW STATUS LIKE 'Ssl_cipher';
 | |
| 
 | |
| # Source select test case
 | |
| -- source include/common-tests.inc
 | |
| 
 | |
| # Check ssl turned on
 | |
| SHOW STATUS LIKE 'Ssl_cipher';
 | |
| 
 | |
| 
 |