assertTrue(ksp.hasConfigPasswordKey());
assertEquals("configKey",new String(ksp.getConfigPasswordKey()));
assertFalse(ksp.hasUserGroupKey("default"));
RandomPasswordProvider rpp = getSecurityManager().getRandomPassworddProvider();
char[] urlKey = rpp.getRandomPasswordWithDefaultLength();
//System.out.printf("Random password with length %d : %s\n",urlKey.length,new String(urlKey));
char[] urlKey2 = rpp.getRandomPasswordWithDefaultLength();
//System.out.printf("Random password with length %d : %s\n",urlKey2.length,new String(urlKey2));
assertFalse(urlKey.equals(urlKey2));
ksp.setSecretKey( KeyStoreProviderImpl.USERGROUP_PREFIX+"default"+
KeyStoreProviderImpl.USERGROUP_POSTFIX, "defaultKey".toCharArray());