/** * Alipay.com Inc. Copyright (c) 2004-2005 All Rights Reserved. * * <p> * Created on 2005-7-9 * </p> */ package com.alipay.util; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * MD5加密算法 */ public class Md5Encrypt { /** * Used building output as Hex */ private static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; /** * 对字符串进行MD5加密 * * @param text * 明文 * * @return 密文 */ public static String md5(String text) { MessageDigest msgDigest = null; try { msgDigest = MessageDigest.getInstance("MD5"); } catch (NoSuchAlgorithmException e) { throw new IllegalStateException( "System doesn't support MD5 algorithm."); } try { msgDigest.update(text.getBytes("GBK")); } catch (UnsupportedEncodingException e) { throw new IllegalStateException( "System doesn't support your EncodingException."); } byte[] bytes = msgDigest.digest(); String md5Str = new String(encodeHex(bytes)); return md5Str; } public static char[] encodeHex(byte[] data) { int l = data.length; char[] out = new char[l << 1]; // two characters form the hex value. for (int i = 0, j = 0; i < l; i++) { out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; out[j++] = DIGITS[0x0F & data[i]]; } return out; } }
最近下载更多
zj20020510 LV5
2023年9月18日
寒江雪2017 LV10
2023年8月2日
sunrandong LV4
2023年6月9日
17693282606 LV12
2022年7月10日
shuangerduo LV9
2022年6月26日
2998919365 LV5
2022年5月27日
georgejin LV9
2022年5月13日
不停的奔跑 LV20
2022年3月20日
wouldbb LV6
2021年12月18日
啊凯a LV2
2021年12月9日