md5 解密
3b1ad37187be32ec963a1eaac7f77b42
public String addMD5Sign(String source)
{
String result = "";
String key = "fe355d547d506890689f29020910209002";
String md5s = getMD5Mac(key );
return result;
}
public static byte[] getMD5Mac(byte[] bySourceByte)
{
byte[] byDisByte;
MessageDigest md;
try{
md = MessageDigest.getInstance("MD5");
md.reset();
md.update(bySourceByte);
byDisByte = md.digest();
}catch (NoSuchAlgorithmException n){
return(null);
}
return(byDisByte);
这是一段md5加密代码 请各位帮忙看看 它加密后输出地字符串是什么
}