1. 程式人生 > >MD5 加密需要注意編碼格式!!!

MD5 加密需要注意編碼格式!!!

相信做過MD5加密的童鞋都遇到過字元編碼的坑,一般加密出來的結果和其他人不一樣都是字元編碼不一致導致的,比如類檔案的字元編碼、瀏覽器的字元編碼等和對方不一致,所以就需要轉碼統一字元。

以下是筆者轉碼過程中遇到的坑:

不要new String("XXXX".getBytes("UTF-8")),之後將轉碼後的字串傳入MD5去加密,會遇到意想不到的效果,有的字元加密出來和對方一樣,有的不一樣,特提供以下兩個方法,供參考:

方法一:

public static String MD5(String string,String enCode) {  
        byte[] hash = null;  
        try {  
            hash = MessageDigest.getInstance("MD5").digest(string.getBytes(enCode));  
        } catch (NoSuchAlgorithmException e) {  
            logger.error("32位MD5加密出錯---->NoSuchAlgorithmException"+e.getMessage());
        } catch (UnsupportedEncodingException e) {  
            logger.error("32位MD5加密出錯---->UnsupportedEncodingException"+e.getMessage());
        }  
  
        StringBuilder hex = new StringBuilder(hash.length * 2);  
        for (byte b : hash) {
            if ((b & 0xFF) < 0x10) hex.append("0");  
            hex.append(Integer.toHexString(b & 0xFF));
        }  
        return hex.toString();  
    }

方法二:

public final static String MD5(String s,String encodingType) {
        char hexDigits[]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};       

        try {
            // 按照相應編碼格式獲取byte[]
            byte[] btInput = s.getBytes(encodingType);
            // 獲得MD5摘要演算法的 MessageDigest 物件
            MessageDigest mdInst = MessageDigest.getInstance("MD5");
            // 使用指定的位元組更新摘要
            mdInst.update(btInput);
            // 獲得密文
            byte[] md = mdInst.digest();
            // 把密文轉換成十六進位制的字串形式

            int j = md.length;
            char str[] = new char[j * 2];
            int k = 0;

            for (int i = 0; i < j; i++) {
                byte byte0 = md[i];
                str[k++] = hexDigits[byte0 >>> 4 & 0xf];
                str[k++] = hexDigits[byte0 & 0xf];
            }
            return new String(str);
        } catch (Exception e) {
            return "-1"