edu.vt.middleware.password.HistoryRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-password Show documentation
Show all versions of vt-password Show documentation
Library for checking that a password complies with a custom set of rules
The newest version!
/*
$Id: HistoryRule.java 2704 2013-04-24 21:30:32Z dfisher $
Copyright (C) 2003-2013 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision: 2704 $
Updated: $Date: 2013-04-24 17:30:32 -0400 (Wed, 24 Apr 2013) $
*/
package edu.vt.middleware.password;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Rule for determining if a password matches one of any previous password a
* user has chosen. If no password history has been set or an empty history has
* been set, then passwords will meet this rule.
*
* @author Middleware Services
* @version $Revision: 2704 $ $Date: 2013-04-24 17:30:32 -0400 (Wed, 24 Apr 2013) $
*/
public class HistoryRule extends AbstractDigester implements Rule
{
/** Error code for history violation. */
public static final String ERROR_CODE = "HISTORY_VIOLATION";
/** {@inheritDoc} */
@Override
public RuleResult validate(final PasswordData passwordData)
{
final RuleResult result = new RuleResult(true);
final int size = passwordData.getPasswordHistory().size();
if (size == 0) {
return result;
}
final String cleartext = passwordData.getPassword().getText();
for (String previousPassword : passwordData.getPasswordHistory()) {
if (matches(cleartext, previousPassword)) {
result.setValid(false);
result.getDetails().add(
new RuleResultDetail(
ERROR_CODE,
createRuleResultDetailParameters(size)));
}
}
return result;
}
/**
* Creates the parameter data for the rule result detail.
*
* @param size of the history list
*
* @return map of parameter name to value
*/
protected Map createRuleResultDetailParameters(final int size)
{
final Map m = new LinkedHashMap();
m.put("historySize", size);
return m;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy