赞
踩
RandomStringUtils是apache下面工具类
//sha256加密
String salt = RandomStringUtils.randomAlphanumeric(20);
user.setPassword(new Sha256Hash(user.getPassword(), salt).toHex());
user.setSalt(salt);
this.insert(user);
创建时随机生成盐(也就是随机数)
撒盐
撒盐前密码为123456
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。