摘要:
public static String MD5(String plainText){ String str = null; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(plainText.getBytes()); byte b[] = md.digest(); int i; StringBuffer buf = new StringBuffer(""); for (int offset = 0; offset < b.length; offset++) 阅读全文
posted @ 2012-12-25 11:50
lsl8966
阅读(386)
评论(0)
推荐(0)
浙公网安备 33010602011771号