Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1997863
  • 博文数量: 1647
  • 博客积分: 80000
  • 博客等级: 元帅
  • 技术积分: 9980
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-13 15:15
文章分类

全部博文(1647)

文章存档

2011年(1)

2008年(1646)

我的朋友

分类:

2008-10-28 18:17:14

    的MessageDigest 提供了生产MD5的算法,但是它返回的是byte[],以下方法实现了MD5值为16进制字符串的返回值。
    由于没有找到现成的转换方法,采用的是对每个字节比较来实现的.

    public class MD5Security {
        private final static char[] hexDigits = { '0', '1', '2', '3', '4', '5',
                '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

        private static String bytesToHex(byte[] bytes) {
            StringBuffer sb = new StringBuffer();
            int t;
            for (int i = 0; i < 16; i++) {// 16 == bytes.length;

                t = bytes[i];
                if (t < 0)
                    t +=256;
                sb.append(hexDigits[(t >>> 4)]);
                sb.append(hexDigits[(t % 16)]);
            }
            return sb.toString();
        }

        public static String code(String input) throws Exception {
            try {
                MessageDigest md = MessageDigest.getInstance(System.getProperty(
                        "MD5.algorithm", "MD5"));
                return bytesToHex(md.digest(input.getBytes("utf-8")));

            } catch (NoSuchAlgorithmException e) {
                e.printStackTrace();
                throw new Exception("Could not found MD5 algorithm.", e);
            }
        }
    }

 

【责编:Ken】

--------------------next---------------------

阅读(244) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~