2015-09-07 11:44:36 -06:00
|
|
|
|
// annotations/PasswordUtils.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-06-15 17:47:35 -07:00
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
public class PasswordUtils {
|
|
|
|
|
@UseCase(id = 47, description =
|
|
|
|
|
"Passwords must contain at least one numeric")
|
|
|
|
|
public boolean validatePassword(String password) {
|
|
|
|
|
return (password.matches("\\w*\\d\\w*"));
|
|
|
|
|
}
|
|
|
|
|
@UseCase(id = 48)
|
|
|
|
|
public String encryptPassword(String password) {
|
|
|
|
|
return new StringBuilder(password).reverse().toString();
|
|
|
|
|
}
|
|
|
|
|
@UseCase(id = 49, description =
|
|
|
|
|
"New passwords can't equal previously used ones")
|
|
|
|
|
public boolean checkForNewPassword(
|
|
|
|
|
List<String> prevPasswords, String password) {
|
|
|
|
|
return !prevPasswords.contains(password);
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|