牛骨文教育服务平台(让学习变的简单)
博文笔记

java MD5 加密 Base64 编码

创建时间:2015-04-20 投稿人: 浏览次数:772
package com.haier.openplatform.alm.util.radar;

import java.security.MessageDigest;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 *
 * @author Addison_Li
 *
 */
public class EncryptUtil {
    private static final Log LOG = LogFactory.getLog(EncryptUtil.class);
    
    
    private static final char HEXDIGITS[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };
    private static final byte[] ENCODINGTABLE = {
        (byte) "A", (byte) "B", (byte) "C", (byte) "D", (byte) "E",
        (byte) "F", (byte) "G", (byte) "H", (byte) "I", (byte) "J",
        (byte) "K", (byte) "L", (byte) "M", (byte) "N", (byte) "O",
        (byte) "P", (byte) "Q", (byte) "R", (byte) "S", (byte) "T",
        (byte) "U", (byte) "V", (byte) "W", (byte) "X", (byte) "Y",
        (byte) "Z", (byte) "a", (byte) "b", (byte) "c", (byte) "d",
        (byte) "e", (byte) "f", (byte) "g", (byte) "h", (byte) "i",
        (byte) "j", (byte) "k", (byte) "l", (byte) "m", (byte) "n",
        (byte) "o", (byte) "p", (byte) "q", (byte) "r", (byte) "s",
        (byte) "t", (byte) "u", (byte) "v", (byte) "w", (byte) "x",
        (byte) "y", (byte) "z", (byte) "0", (byte) "1", (byte) "2",
        (byte) "3", (byte) "4", (byte) "5", (byte) "6", (byte) "7",
        (byte) "8", (byte) "9", (byte) "+", (byte) "/"
    };
    private static final byte[] DECODINGTABLE;
    
    static {
        DECODINGTABLE = new byte[128];
    
        for (int i = 0; i < 128; i++) {
            DECODINGTABLE[i] = (byte) -1;
        }
    
        for (int i = "A"; i <= "Z"; i++) {
            DECODINGTABLE[i] = (byte) (i - "A");
        }
    
        for (int i = "a"; i <= "z"; i++) {
            DECODINGTABLE[i] = (byte) (i - "a" + 26);
        }
    
        for (int i = "0"; i <= "9"; i++) {
            DECODINGTABLE[i] = (byte) (i - "0" + 52);
        }
    
        DECODINGTABLE["+"] = 62;
        DECODINGTABLE["/"] = 63;
    }
    
    public static byte[] encode(byte[] data) {
        byte[] bytes;
    
        int modulus = data.length % 3;
    
        if (modulus == 0) {
            bytes = new byte[(4 * data.length) / 3];
        } else {
            bytes = new byte[4 * ((data.length / 3) + 1)];
        }
    
        int dataLength = (data.length - modulus);
        int a1;
        int a2;
        int a3;
    
        for (int i = 0, j = 0; i < dataLength; i += 3, j += 4) {
            a1 = data[i] & 0xff;
            a2 = data[i + 1] & 0xff;
            a3 = data[i + 2] & 0xff;
    
            bytes[j] = ENCODINGTABLE[(a1 >>> 2) & 0x3f];
            bytes[j + 1] = ENCODINGTABLE[((a1 << 4) | (a2 >>> 4)) & 0x3f];
            bytes[j + 2] = ENCODINGTABLE[((a2 << 2) | (a3 >>> 6)) & 0x3f];
            bytes[j + 3] = ENCODINGTABLE[a3 & 0x3f];
        }
    
        int b1;
        int b2;
        int b3;
        int d1;
        int d2;
    
        switch (modulus) {
        case 0: /* nothing left to do */
            break;
    
        case 1:
            d1 = data[data.length - 1] & 0xff;
            b1 = (d1 >>> 2) & 0x3f;
            b2 = (d1 << 4) & 0x3f;
    
            bytes[bytes.length - 4] = ENCODINGTABLE[b1];
            bytes[bytes.length - 3] = ENCODINGTABLE[b2];
            bytes[bytes.length - 2] = (byte) "=";
            bytes[bytes.length - 1] = (byte) "=";
    
            break;
    
        case 2:
            d1 = data[data.length - 2] & 0xff;
            d2 = data[data.length - 1] & 0xff;
    
            b1 = (d1 >>> 2) & 0x3f;
            b2 = ((d1 << 4) | (d2 >>> 4)) & 0x3f;
            b3 = (d2 << 2) & 0x3f;
    
            bytes[bytes.length - 4] = ENCODINGTABLE[b1];
            bytes[bytes.length - 3] = ENCODINGTABLE[b2];
            bytes[bytes.length - 2] = ENCODINGTABLE[b3];
            bytes[bytes.length - 1] = (byte) "=";
    
            break;
        }
    
        return bytes;
    }
    
    public static byte[] decode(byte[] data) {
        byte[] bytes;
        byte b1;
        byte b2;
        byte b3;
        byte b4;
    
        data = discardNonBase64Bytes(data);
    
        if (data[data.length - 2] == "=") {
            bytes = new byte[(((data.length / 4) - 1) * 3) + 1];
        } else if (data[data.length - 1] == "=") {
            bytes = new byte[(((data.length / 4) - 1) * 3) + 2];
        } else {
            bytes = new byte[((data.length / 4) * 3)];
        }
    
        for (int i = 0, j = 0; i < (data.length - 4); i += 4, j += 3) {
            b1 = DECODINGTABLE[data[i]];
            b2 = DECODINGTABLE[data[i + 1]];
            b3 = DECODINGTABLE[data[i + 2]];
            b4 = DECODINGTABLE[data[i + 3]];
    
            bytes[j] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[j + 1] = (byte) ((b2 << 4) | (b3 >> 2));
            bytes[j + 2] = (byte) ((b3 << 6) | b4);
        }
    
        if (data[data.length - 2] == "=") {
            b1 = DECODINGTABLE[data[data.length - 4]];
            b2 = DECODINGTABLE[data[data.length - 3]];
    
            bytes[bytes.length - 1] = (byte) ((b1 << 2) | (b2 >> 4));
        } else if (data[data.length - 1] == "=") {
            b1 = DECODINGTABLE[data[data.length - 4]];
            b2 = DECODINGTABLE[data[data.length - 3]];
            b3 = DECODINGTABLE[data[data.length - 2]];
    
            bytes[bytes.length - 2] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[bytes.length - 1] = (byte) ((b2 << 4) | (b3 >> 2));
        } else {
            b1 = DECODINGTABLE[data[data.length - 4]];
            b2 = DECODINGTABLE[data[data.length - 3]];
            b3 = DECODINGTABLE[data[data.length - 2]];
            b4 = DECODINGTABLE[data[data.length - 1]];
    
            bytes[bytes.length - 3] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[bytes.length - 2] = (byte) ((b2 << 4) | (b3 >> 2));
            bytes[bytes.length - 1] = (byte) ((b3 << 6) | b4);
        }
    
        return bytes;
    }
    
    public static byte[] decode(String data) {
        byte[] bytes;
        byte b1;
        byte b2;
        byte b3;
        byte b4;
    
        data = discardNonBase64Chars(data);
    
        if (data.charAt(data.length() - 2) == "=") {
            bytes = new byte[(((data.length() / 4) - 1) * 3) + 1];
        } else if (data.charAt(data.length() - 1) == "=") {
            bytes = new byte[(((data.length() / 4) - 1) * 3) + 2];
        } else {
            bytes = new byte[((data.length() / 4) * 3)];
        }
    
        for (int i = 0, j = 0; i < (data.length() - 4); i += 4, j += 3) {
            b1 = DECODINGTABLE[data.charAt(i)];
            b2 = DECODINGTABLE[data.charAt(i + 1)];
            b3 = DECODINGTABLE[data.charAt(i + 2)];
            b4 = DECODINGTABLE[data.charAt(i + 3)];
    
            bytes[j] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[j + 1] = (byte) ((b2 << 4) | (b3 >> 2));
            bytes[j + 2] = (byte) ((b3 << 6) | b4);
        }
    
        if (data.charAt(data.length() - 2) == "=") {
            b1 = DECODINGTABLE[data.charAt(data.length() - 4)];
            b2 = DECODINGTABLE[data.charAt(data.length() - 3)];
    
            bytes[bytes.length - 1] = (byte) ((b1 << 2) | (b2 >> 4));
        } else if (data.charAt(data.length() - 1) == "=") {
            b1 = DECODINGTABLE[data.charAt(data.length() - 4)];
            b2 = DECODINGTABLE[data.charAt(data.length() - 3)];
            b3 = DECODINGTABLE[data.charAt(data.length() - 2)];
    
            bytes[bytes.length - 2] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[bytes.length - 1] = (byte) ((b2 << 4) | (b3 >> 2));
        } else {
            b1 = DECODINGTABLE[data.charAt(data.length() - 4)];
            b2 = DECODINGTABLE[data.charAt(data.length() - 3)];
            b3 = DECODINGTABLE[data.charAt(data.length() - 2)];
            b4 = DECODINGTABLE[data.charAt(data.length() - 1)];
    
            bytes[bytes.length - 3] = (byte) ((b1 << 2) | (b2 >> 4));
            bytes[bytes.length - 2] = (byte) ((b2 << 4) | (b3 >> 2));
            bytes[bytes.length - 1] = (byte) ((b3 << 6) | b4);
        }
    
        return bytes;
    }
    
    private static byte[] discardNonBase64Bytes(byte[] data) {
        byte[] temp = new byte[data.length];
        int bytesCopied = 0;
    
        for (int i = 0; i < data.length; i++) {
            if (isValidBase64Byte(data[i])) {
                temp[bytesCopied++] = data[i];
            }
        }
    
        byte[] newData = new byte[bytesCopied];
    
        System.arraycopy(temp, 0, newData, 0, bytesCopied);
    
        return newData;
    }
    
    private static String discardNonBase64Chars(String data) {
        StringBuffer sb = new StringBuffer();
    
        int length = data.length();
    
        for (int i = 0; i < length; i++) {
            if (isValidBase64Byte((byte) (data.charAt(i)))) {
                sb.append(data.charAt(i));
            }
        }
    
        return sb.toString();
    }
    
    private static boolean isValidBase64Byte(byte b) {
        if (b == "=") {
            return true;
        } else if ((b < 0) || (b >= 128)) {
            return false;
        } else if (DECODINGTABLE[b] == -1) {
            return false;
        }
    
        return true;
    }    
    public static final String getMD5Code(String inputstr){
        try {
            byte[] strTemp = inputstr.getBytes();
            MessageDigest mdTemp = MessageDigest.getInstance("MD5");
            mdTemp.update(strTemp);
            byte[] md = mdTemp.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 null;
        }
    }
    
    /*@SuppressWarnings("restriction")
    public static byte[] decryptBASE64(String key) throws Exception {
        return (new BASE64Decoder()).decodeBuffer(key);
    }*/
    
    /*@SuppressWarnings("restriction")
    public static String encryptBASE64(byte[] key) throws Exception {
        return (new BASE64Encoder()).encodeBuffer(key);
    }*/
    
    /**
     * @param args
     */
    public static void main(String[] args) {
        String key = "DEB972A5DF30D1F884833993254716EC";//唯一密钥,门户和报表系统同步维护(数据库中维护)
        //String data = "userid=2000123;username=hello中文;role=12345,23456;center=C12504,C12506,C12508";//数据串
        String data = "00613049;丁静;12,14,15;all;";
        String r64 = new String(encode(data.getBytes()));//对数据传进行编码 得到r64
        String t64 = key+r64;// 将key和数据串拼到一起
        String sign = getMD5Code(t64);// 将key和数据串拼到一起后进行MD5加密 得到签名 sign(将r64和sign在url中传给报表系统)
        System.out.println("rights R64:"+r64);
        System.out.println("T64=key+R64:"+t64);
        System.out.println("sign:"+sign);
        
        System.out.println("Decode:"+new String(decode("MDA2MTMwNDk75LiB6Z2ZOzEzLDE2O2FsbDs=")));
        
        // TODO Auto-generated method stub
        /*try {
            System.out.println(encryptBASE64("111111".getBytes()));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            System.out.println(decryptBASE64("MTExMTEx"));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }*/
    }

}

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。