id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
20	Scrambled passwords don't fit database	joeri.theelen@…	geonetwork-devel@lists.sourceforge.net	"Since Beta 2 passwords are scrambled in the database. The length of a scrambled password is always 38 characters, but the database structure defines the password field as varchar(32). This causes an error, also during initialisation of the database with GAST tool (creation of admin user).

Example:
{{{
import jeeves.utils.Util;

public class TestScramble {
	public static void main(String[] args) {
		String password = ""something"";
		String scrambled = Util.scramble(password);
		Integer length = scrambled.length();
		System.out.println(""password: "" + password);
		System.out.println(""scrambled: "" + scrambled);
		System.out.println(""length: "" + length);
	}
}
}}}
"	defect	closed	major	v2.1 beta 2	General		fixed	password, database	
