摘要: /** * @author gongchaobin * * MD5加密 * * @version 2013-8-22 */public class MD5Util { // 用来将字节转换成 16 进制表示的字符 static char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c 阅读全文
posted @ 2013-08-22 13:28 暗殇 阅读(330) 评论(0) 推荐(0) 编辑
摘要: private static final String KEY = "xxxxxx"; // KEY的字节长度必须超过24 public DESUtil(){ super(); } /** DES加密 * @param str 要加密的内容 */ public String getDES(String str){ if(TextUtils.isEmpty(str)){ return null; } try { b... 阅读全文
posted @ 2013-08-22 13:26 暗殇 阅读(868) 评论(0) 推荐(0) 编辑