md5加密,md5加盐加密和解密package st;
import java.security.MessageDigest;
import java.security.SecureRandom;
import java.util.Arrays;
public class Test {
private static final Integer SALT_LENGTH = 12;
/**
* 16进制数字
*/
private static final String HEX_NUMS_STR="0123456789abcdef";
/*----------------md5普通加密*/
/
***
* MD5加密⽣成32位md5码
* @param待加密字符串
* @return返回32位md5码
*/
public static String md5Encode(String inStr) throws Exception {
MessageDigest md5 = null;
try {
md5 = Instance("MD5");
} catch (Exception e) {
System.out.String());
e.printStackTrace();
return "";
}
byte[] byteArray = Bytes("UTF-8");
byte[] md5Bytes = md5.digest(byteArray);
StringBuffer hexValue = new StringBuffer();
for (int i = 0; i < md5Bytes.length; i++) {
int val = ((int) md5Bytes[i]) & 0xff;
if (val < 16) {
hexValue.append("0");
}
hexValue.HexString(val));
}
String();
}
/*----------------md5加盐加密和解密*/
/**
* 获得加密后的16进制形式⼝令
* @param password
* @return
* @throws Exception
* @throws NoSuchAlgorithmException
* @throws UnsupportedEncodingException
*/
public static String getEncryptedPwd(String password) throws Exception{
try{
//声明加密后的⼝令数组变量
byte[] pwd = null;
//随机数⽣成器
SecureRandom random = new SecureRandom();
//声明盐数组变量
byte[] salt = new byte[SALT_LENGTH];
//将随机数放⼊盐变量中
//获得加密的数据
byte[] digest = encrypte(salt,password);
//因为要在⼝令的字节数组中存放盐,所以加上盐的字节长度
pwd = new byte[digest.length + SALT_LENGTH];
//将盐的字节拷贝到⽣成的加密⼝令字节数组的前12个字节,以便在验证⼝令时取出盐
System.arraycopy(salt, 0, pwd, 0, SALT_LENGTH);
//将消息摘要拷贝到加密⼝令字节数组从第13个字节开始的字节
System.arraycopy(digest, 0, pwd, SALT_LENGTH, digest.length);
//将字节数组格式加密后的⼝令转化为16进制字符串格式的⼝令
return byteToHexString(pwd);
}catch(Exception e){
throw new Exception("获取加密密码失败",e);
}
}
/**
*
* 根据盐⽣成密码
* @param salt
* @param passwrod
* @return
* @throws Exception
* @throws UnsupportedEncodingException
* @throws NoSuchAlgorithmException
*/
public static byte[] encrypte(byte[] salt,String passwrod) throws Exception{
try{
//声明消息摘要对象
MessageDigest md = null;
//创建消息摘要
md = Instance("MD5");
//将盐数据传⼊消息摘要对象
md.update(salt);
/
/将⼝令的数据传给消息摘要对象
md.Bytes("UTF-8"));
//获得消息摘要的字节数组
return md.digest();
}catch(Exception e){
throw new Exception("Md5解密失败",e);
}
}
/**
* 将指定byte数组转换成16进制字符串(⼤写)
* @param b
字符串数组怎么转成byte* @return
*/
public static String byteToHexString(byte[] bytes) {
StringBuffer md5str = new StringBuffer();
//把数组每⼀字节换成16进制连成md5字符串
int digital;
for (int i = 0; i < bytes.length; i++) {
digital = bytes[i];
if(digital < 0) {
digital += 256;
}
if(digital < 16){
md5str.append("0");
}
md5str.HexString(digital));
}
String();
}
/**
* 验证⼝令是否合法
* @param password
* @param passwordInDb
* @return
* @throws Exception
* @throws NoSuchAlgorithmException
* @throws UnsupportedEncodingException
*/
public static boolean validPassword(String password, String passwordInDb) throws Exception { try{
//将16进制字符串格式⼝令转换成字节数组
byte[] pwdInDb = hexStringToByte(passwordInDb);
//声明盐变量
byte[] salt = new byte[SALT_LENGTH];
//将盐从数据库中保存的⼝令字节数组中提取出来
System.arraycopy(pwdInDb, 0, salt, 0, SALT_LENGTH);
//获得加密的数据
byte[] digest = encrypte(salt,password);
//声明⼀个保存数据库中⼝令消息摘要的变量
byte[] digestInDb = new byte[pwdInDb.length - SALT_LENGTH];
//取得数据库中⼝令的消息摘要
System.arraycopy(pwdInDb, SALT_LENGTH, digestInDb, 0, digestInDb.length);
//⽐较根据输⼊⼝令⽣成的消息摘要和数据库中消息摘要是否相同
if (Arrays.equals(digest, digestInDb)) {
//⼝令正确返回⼝令匹配消息
return true;
} else {
//⼝令不正确返回⼝令不匹配消息
return false;
}
}catch(Exception e){
throw new Exception("密码验证失败",e);
}
}
/**
* 将16进制字符串转换成字节数组(⼤写)
* @param hex
* @return
*/
public static byte[] hexStringToByte(String hex) {
int len = (hex.length() / 2);
byte[] result = new byte[len];
char[] hexChars = CharArray();
for (int i = 0; i < len; i++) {
int pos = i * 2;
result[i] = (byte) (HEX_NUMS_STR.indexOf(hexChars[pos]) << 4
| HEX_NUMS_STR.indexOf(hexChars[pos + 1]));
}
return result;
}
public static void main(String[] args) throws Exception {
//经过md5加盐加密的123字符串为str123
// System.out.println(getEncryptedPwd("123"));
String str123_1 = "3fc7ed92dfb924f56ece855e74bf9c5c0c1f6f72a4dcc4a7db943bf0";//123加盐加密 String str123_2 = "7dd3e5af8b373221a9864df5c2b46208fb819a256398a59deec5cb09";//123加盐加密 //⽐对输⼊登录秘密和数据库加盐加密密码
boolean isTrue1 = validPassword("123",str123_1);
boolean isTrue2 = validPassword("123",str123_2);
boolean isTrue3 = validPassword("1231",str123_2);
System.out.println("验证密码结果:"+isTrue1);//true
System.out.println("验证密码结果:"+isTrue2);//true
System.out.println("验证密码结果:"+isTrue3);//fase
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论