mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	--old-passwords Support for option --old-protocol was removed. Some test performed. Tests for SSL and replication are pending. More strict following to specification for --old-passwords is in the TODO.
		
			
				
	
	
		
			37 lines
		
	
	
		
			1019 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1019 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
-- source include/have_crypt.inc
 | 
						|
 | 
						|
select length(encrypt('foo', 'ff')) <> 0;
 | 
						|
--replace_result $1$aa$4OSUA5cjdx0RUQ08opV27/ aaqPiZY5xR5l.
 | 
						|
 | 
						|
# Test new and old password handling functions 
 | 
						|
select password('abc');
 | 
						|
select password('');
 | 
						|
select old_password('abc');
 | 
						|
select old_password('');
 | 
						|
select password('gabbagabbahey');
 | 
						|
select old_password('idkfa');
 | 
						|
select length(password('1'));
 | 
						|
select length(encrypt('test'));
 | 
						|
select encrypt('test','aa');
 | 
						|
select old_password(NULL);
 | 
						|
select password(NULL);
 | 
						|
set global old_passwords=on;
 | 
						|
select password('');
 | 
						|
select old_password('');
 | 
						|
select password('idkfa');
 | 
						|
select old_password('idkfa');
 | 
						|
set old_passwords=on;
 | 
						|
select password('idkfa');
 | 
						|
select old_password('idkfa');
 | 
						|
set global old_passwords=off;
 | 
						|
select password('idkfa');
 | 
						|
select old_password('idkfa');
 | 
						|
 | 
						|
# this test shows that new scrambles honor spaces in passwords:
 | 
						|
set old_passwords=off;
 | 
						|
select password('idkfa ');
 | 
						|
select password('idkfa');
 | 
						|
select password(' idkfa');
 | 
						|
select old_password('idkfa');
 | 
						|
select old_password(' i 	 d k f a ');
 |