We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c87f912 commit e083bb0Copy full SHA for e083bb0
Advanced PassGen/Classes/Password.cs
@@ -54,7 +54,7 @@ private static int CheckStrength(string password)
54
if (password.Length >= 10) score++;
55
if (Regex.Match(password, @"\d", RegexOptions.ECMAScript).Success) score++;
56
if (Regex.Match(password, @"[a-z]", RegexOptions.ECMAScript).Success && Regex.Match(password, @"[A-Z]", RegexOptions.ECMAScript).Success) score++;
57
- if (Regex.Match(password, @"[:,µ,;,<,>,+,!,@,#,$,%,^,&,*,?,_,~,-,£,(,);\[,\],⟨,⟩]", RegexOptions.ECMAScript).Success) score++;
+ if (Regex.Match(password, @"[:,µ,;, ,<,>,+,!,@,#,$,%,^,&,*,?,_,~,-,£,(,);\[,\],⟨,⟩]", RegexOptions.ECMAScript).Success) score++;
58
59
return score;
60
}
0 commit comments