爱心技术专栏专题

的MD5加密算法源代码

摘录:java 来源:java 加入时间:2006年08月19日
摘要:
的MD5加密算法源代码

import java.security.*;
import java.security.spec.*;

class MD5_Test{

public final static String MD5(String s){
char hexDigits[] = {
0, 1, 2, 3, 4, 5, 6, …

转载:转载请保留本信息,本文来自
http://www.51dibs.com
/html/2006/article/info15/a_c618a25ab3c99012.htm

的MD5加密算法源代码

站点:爱心种子小博士 关键字:的MD5加密算法源代码

   
的MD5加密算法源代码
import java.security.*;
import java.security.spec.*;

class MD5_Test{

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 {
byte[] strTemp = s.getBytes();
MessageDigest mdTemp = MessageDigest.getInstance("MD5");
mdTemp.update(strTemp);
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;
}
}
public static void main(String[] args){
//MD5_Test aa = new MD5_Test();

System.out.print(MD5_Test.MD5("XX"));
}




客户服务中心信箱:[email protected] [email protected] 网站地图

声明

合作伙伴: