Android MD5加密

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
public String getMD5(String info)
{
try
{
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(info.getBytes("UTF-8"));
byte[] encryption = md5.digest();

StringBuffer strBuf = new StringBuffer();
for (int i = 0; i < encryption.length; i++)
{
if (Integer.toHexString(0xff & encryption[i]).length() == 1)
{
strBuf.append("0").append(Integer.toHexString(0xff & encryption[i]));
}
else
{
strBuf.append(Integer.toHexString(0xff & encryption[i]));
}
}

return strBuf.toString();
}
catch (Exception exception)
{
return "";
}
}