1、通过java.Security.MessageDigest的静态方法getInstance创建具有指定算法名称的信息摘要,参数为算法名,传入”MD5“则表示使用MD5算法
2、MessageDigest的digest实例方法使用指定的字节数组对摘要进行最后的更新,然后完成摘要计算,返回存放哈希值结果的字节数组,这个字节数组就是MD5的加密产品。
3、将加密后的字节数组转换成十六进制的字符串,形成最终的密码。
4、当输入字符串经过MD5加密后,得到的字符串与密码一样,则认为密码验证通过。
package Password_security; import java.security.MessageDigest; public class Password_security { //十六进制下数字到字符的映射数组
private final static String[] hexDigits = {"0", "1", "2", "3", "4",
"5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"}; public static String createPassword(String inputString){
return encodeByMD5(inputString);
} public static boolean authenticatePassword(String password, String inputString) {
if(password.equals(encodeByMD5(inputString))) {
return true;
} else {
return false;
}
} private static String encodeByMD5(String originString) {
if (originString != null) {
try{
//创建具有指定算法名称的信息摘要
MessageDigest md = MessageDigest.getInstance("MD5");
//使用指定的字节数组对摘要进行最后更新,然后完成摘要计算
byte[] results = md.digest(originString.getBytes());
//将得到的字节数组变成字符串返回
String resultString = byteArrayToHexString(results);
return resultString.toUpperCase();
} catch(Exception ex) {
ex.printStackTrace();
}
}
return null;
} private static String byteArrayToHexString(byte[] b) {
StringBuffer resultSb = new StringBuffer();
for (int i = 0; i < b.length; i++) {
resultSb.append(byteToHexString(b[i]));
}
return resultSb.toString();
} private static String byteToHexString(byte b) {
int n = b;
if (n < 0)
n = 256 + n;
int d1 = n / 16;
int d2 = n % 16;
return hexDigits[d1] + hexDigits[d2];
} public static void main(String[] args) {
String password = Password_security.createPassword("888888");
System.out.println("对888888用MD5摘要后的字符串:" + password);
String inputString = "8888";
System.out.println("8888与密码匹配?" +
Password_security.authenticatePassword(password, inputString));
inputString = "888888";
System.out.println("888888与密码匹配?" +
Password_security.authenticatePassword(password, inputString));
} }
运行效果: