This commit is contained in:
eitch 2010-05-31 21:55:52 +00:00
parent 756ae1e3e9
commit 152d58d515
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<PrivilegesUsers>
<User username="eitch" password="4d3827bc9c98f96af0d04145fd0d538bec08adf7f8103d91bf52cc53a6c0d4c6">
<User username="eitch" password="c775e7b757ede630cd0aa1113bd102661ab38829ca52a6422ab782862f268646">
<Firstname>Robert</Firstname>
<Surname>von Burg</Surname>
<State>ENABLED</State>

View File

@ -47,7 +47,7 @@ public class PasswordCreator {
}
System.out.print("Password: ");
String password = r.readLine();
String password = r.readLine().trim();
System.out.print("Hash is: " + EncryptionHelper.encryptString(hashAlgorithm, password));
}

View File

@ -43,7 +43,7 @@ public class TestConfigurationHelper {
for (int i = 0; i < 10; i++) {
// let's authenticate a session
auth("eitch", "592038");
auth("eitch", "1234567890");
}
}