You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class Md5PassWordVerifyRule{
|
|
public static void cs(Student studnet){
|
|
// 结合盐值和口令进行散列计算
|
|
// String password = DigestUtils.md5Hex(str);
|
|
|
|
studnet.setPassWord(password);// Noncompliant {{应使用单向不可逆的加密算法}}
|
|
|
|
}
|
|
|
|
} |