package com.md5; import java.security.MessageDigest; public class MD5 { public static String md5(String text) { try { if (text == null) return null; MessageDigest md = MessageDigest.getInstance("MD5"); md.update(text.getBytes("UTF-8")); byte b[] = md.digest(); int i; StringBuffer buf = new StringBuffer(""); for (int offset = 0; offset < b.length; offset++) { i = b[offset]; if (i < 0) i += 256; if (i < 16) buf.append("0"); buf.append(Integer.toHexString(i)); } return buf.toString(); } catch (Exception e) { e.printStackTrace(); } return null; } }
最近下载更多
香帅 LV1
2021年7月3日
ddy123 LV1
2021年6月3日
new_test_yang LV1
2021年3月8日
ac993383685 LV1
2021年2月9日
Haven99999 LV1
2021年2月1日
polar小熊 LV2
2021年1月5日
cgjcgjcgj LV1
2020年11月11日
sun_bo LV1
2020年11月11日
wdy1024 LV1
2020年9月22日
陈先生007 LV1
2020年9月15日