props.put(PROPERTY_KEY_PASSWORD, keyPassword);
props.put(PROPERTY_PASSWORD_HASHMETHOD, "sha1");
PasswordAuthenticationProcessor processor = new PasswordAuthenticationProcessor();
processor.updated(props);
byte[] hashedPw = DigestUtils.sha("secret");
// Test whether we can use the new properties...
User user = mock(User.class);