用Java提供的相关方法实现MD5加密:
import java.security.MessageDigest;
/**
* 使用Java中相关的类实现MD5加密
*/
public class MD5_Demo {
public static void main(String[] args) {
String password1=MD5("456789");
System.out.println(password1);//e35cf7b66449df565f93c607d5a81d09
String password2=MD5("789123".getBytes());
System.out.println(password2);//0d06fd8cb26eb57f1a690f493663cc55
}
public final static String MD5(String s) {
char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f' };
try {
//获得MD5摘要算法的MessageDigest对象
MessageDigest mdTemp = MessageDigest.getInstance("MD5");
//使用指定的字节更新摘要
mdTemp.update(s.getBytes());
//获得密文
byte[] md = mdTemp.digest();
//把密文转成16进制的字符串形式
int j = md.length;
char str[] = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
return new String(str);
} catch (Exception e) {
return null;
}
}
public final static String MD5(byte[] byt) {
char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f' };
try {
MessageDigest mdTemp = MessageDigest.getInstance("MD5");
mdTemp.update(byt);
byte[] md = mdTemp.digest();
int j = md.length;
char str[] = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
return new String(str);
} catch (Exception e) {
return null;
}
}
}
MD5是不可逆的,也就是说没有一种算法能根据MD5加密后的数据算出原来的密码。但是现在有很多的网站,使用穷举法,存储了很多的经过MD5加密后的数据。比如这个网站:http://www.cmd5.com/。456789经过MD5加密后的密文为:e35cf7b66449df565f93c607d5a81d09,该网站能根据此密文准确的查出密码为:456789