For setting the Password complexity in .Net MVC web application, how can I achieve the following rules:
1) Password must not contain significant portions (three or more contiguous characters) of the name. (this point is not available in that linked post)
2) At least three of the following four categories:
- English uppercase characters (A through Z)
- English lowercase characters (a through z)
- Base 10 digits (0 through 9)
- Non-alphabetic characters: ~!@#$%^&*;?+_
I would like to achieve this using javascript/jquery.
Thanks