X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Futil%2FPasswordStrengthChecker.java;h=3e4760bbf2b86c47fd53766fbbe5be89b26e0327;hb=3252dc36fadd1a7e5f13bc01401e10565d61f635;hp=07898f263b681715f141d5405ce236bf4d07efd5;hpb=28f6b558d8116f8cbb17390a83235976b50903b0;p=gigi.git diff --git a/src/org/cacert/gigi/util/PasswordStrengthChecker.java b/src/org/cacert/gigi/util/PasswordStrengthChecker.java index 07898f26..3e4760bb 100644 --- a/src/org/cacert/gigi/util/PasswordStrengthChecker.java +++ b/src/org/cacert/gigi/util/PasswordStrengthChecker.java @@ -2,6 +2,7 @@ package org.cacert.gigi.util; import java.util.regex.Pattern; +import org.cacert.gigi.GigiApiException; import org.cacert.gigi.User; public class PasswordStrengthChecker { @@ -10,8 +11,10 @@ public class PasswordStrengthChecker { static Pattern upper = Pattern.compile("[A-Z]"); static Pattern whitespace = Pattern.compile("\\s"); static Pattern special = Pattern.compile("(?!\\s)\\W"); + private PasswordStrengthChecker() { } + private static int checkpwlight(String pw) { int points = 0; if (pw.length() > 15) { @@ -43,6 +46,7 @@ public class PasswordStrengthChecker { } return points; } + public static int checkpw(String pw, User u) { if (pw == null) { return 0; @@ -66,6 +70,14 @@ public class PasswordStrengthChecker { // TODO dictionary check return light; } + + public static void assertStrongPassword(String pw, User u) throws GigiApiException { + if (checkpw(pw, u) < 3) { + throw new GigiApiException("The Pass Phrase you submitted failed to contain enough" + + " differing characters and/or contained words from" + " your name and/or email address."); + } + } + private static boolean contained(String pw, String check) { if (check == null || check.equals("")) { return false;