码迷,mamicode.com
首页 > 其他好文 > 详细

工具类总结---(三)---MD5加密

时间:2016-05-03 10:32:49      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

  

     用于给文件名等进行MD5加密:

 

  

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
 * MD5
 */
public class MD5Util {

    public static char hexDigits[] = {‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘};

    public static String md5(String s) {
        try {
            MessageDigest messagedigest = MessageDigest.getInstance("MD5");
            messagedigest.update(s.getBytes());
            byte[] digestByte = messagedigest.digest();
            return bufferToHex(digestByte, 0, digestByte.length);
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
            return null;
        }
    }

    private static String bufferToHex(byte bytes[], int m, int n) {
        StringBuffer stringbuffer = new StringBuffer(2 * n);
        int k = m + n;
        for ( int  l = m; l < k; l++) {
            appendHexPair(bytes[l], stringbuffer);
        }
        return stringbuffer.toString();
    }

    private static void appendHexPair(byte bt, StringBuffer stringbuffer) {
        char c0 = hexDigits[(bt &  0xf0 ) >>  4 ];
        char c1 = hexDigits[bt &  0xf ];
        stringbuffer.append(c0);
        stringbuffer.append(c1);
    }
}

 

 

工具类总结---(三)---MD5加密

标签:

原文地址:http://www.cnblogs.com/beigongfengchen/p/5453952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!