mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			517 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			517 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("a",""), password("a",NULL), password("","a"), password(NULL,"a");
 | 
						|
select password("aaaaaaaaaaaaaaaa","a"), password("a","aaaaaaaaaaaaaaaa");
 | 
						|
select old_password('test'), length(password("1")), length(encrypt('test')), encrypt('test','aa');
 | 
						|
select old_password(""), old_password(NULL), password(""), password(NULL);
 |