使用正则表达式提高用户密码的复杂度和安全性

Posted 秦黎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用正则表达式提高用户密码的复杂度和安全性相关的知识,希望对你有一定的参考价值。

public class PassWordUtil {
    
    static String regex_number = "[\\p{Digit}]+";// 数字  
    static String regex_lower = "[\\p{Lower}]+";// 正则表达式 密码:小写字母  
    static String regex_upper = "[\\p{Upper}]+";// 大写字母  
    static String regex_char = "[\\p{Punct}]+";// 标点符号  
    
    public static boolean matchesPass(String user_password){
        if(user_password==null){
            return false;
        }
        
        if(user_password.length()<8){
            return false;
        }
        
        if (user_password.matches(regex_number)  
                || user_password.matches(regex_upper)  
                || user_password.matches(regex_lower)  
                || user_password.matches(regex_char)) {  
            //return "注册失败,密码不符合要求,大写+小写+数字+字符(至少包含2种)";  
            return false;
        }  
        return true;
    }
    
    public static void main(String[] args) {
        String a="!!addd";
        System.out.println(matchesPass(a));
    }
    
}

 

以上是关于使用正则表达式提高用户密码的复杂度和安全性的主要内容,如果未能解决你的问题,请参考以下文章

python使用正则表达式判别用户输入密码的强弱并提示

linux加固安全之密码复杂度

聊一聊正则表达式,最全最常用

神级程序员教你如何在C语言中巧用正则表达式,简化处理,提高效率

正则表达式验证密码必须由大小写字母、数字、特殊字符组成

带有大写,小写,数字和特殊字符的复杂密码的正则表达式(Python)