Base64編碼解析以及加密、解密實現

afei3418發表於2015-12-30

一、編碼規則
Base64編碼的思想是是採用64個基本的ASCII碼字元對資料進行重新編碼。它將需要編碼的資料拆分成位元組陣列。以3個位元組為一組。按順序排列24位資料,再把這24位資料分成4組,即每組6位。再在每組的的最高位前補兩個0湊足一個位元組。這樣就把一個3位元組為一組的資料重新編碼成了4個位元組。當所 要編碼的資料的位元組數不是3的整倍數,也就是說在分組時最後一組不夠3個位元組。這時在最後一組填充1到2個0位元組。並在最後編碼完成後在結尾新增1到2個“=”。

例:將對ABC進行BASE64編碼:


1、首先取ABC對應的ASCII碼值。A(65)B(66)C(67);
2、再取二進位制值A(01000001)B(01000010)C(01000011);
3、然後把這三個位元組的二進位制碼接起來(010000010100001001000011);
4、 再以6位為單位分成4個資料塊,並在最高位填充兩個0後形成4個位元組的編碼後的值,(00010000)(00010100)(00001001)(00000011),其中藍色部分為真實資料;
5、再把這四個位元組資料轉化成10進位制數得(16)(20)(9)(3);
6、最後根據BASE64給出的64個基本字元表,查出對應的ASCII碼字元(Q)(U)(J)(D),這裡的值實際就是資料在字元表中的索引。

注:BASE64字元表:ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/

二、解碼規則
解碼過程就是把4個位元組再還原成3個位元組再根據不同的資料形式把位元組陣列重新整理成資料。

 

三、java自帶base64實現加密解密

import java.io.UnsupportedEncodingException;

import sun.misc.*;  
  
public class test08 {  
    // 加密   
    public String encoded(String str) {  
        byte[] b = null;  
        String s = null;  
        try {  
            b = str.getBytes("utf-8");  
        } catch (UnsupportedEncodingException e) {  
            e.printStackTrace();  
        }  
        if (b != null) {  
            s = new BASE64Encoder().encode(b);  
        }  
        return s;  
    }  
  
    // 解密   
    public String decode(String s) {  
        byte[] b = null;  
        String result = null;  
        if (s != null) {  
            BASE64Decoder decoder = new BASE64Decoder();  
            try {  
                b = decoder.decodeBuffer(s);  
                result = new String(b, "utf-8");  
            } catch (Exception e) {  
                e.printStackTrace();  
            }  
        }  
        return result;  
    }  
    public static void main(String[] args) throws UnsupportedEncodingException {  
        String str="some string";  
        //加密該字串   
        String encodedString=new test08().encoded(str);  
        System.out.println(encodedString);  
        //解密該字串   
        String decodedString=new test08().decode(encodedString);  
        System.out.println(decodedString);  
    }  
}  

輸出結果:

      c29tZSBzdHJpbmc=
      some string


四、引用第三方包實現加密解密

import java.io.UnsupportedEncodingException;

import org.apache.commons.codec.binary.Base64;



/** 
 * 封裝Base64的工具類 
 * 
 */  
class UrlBase64Coder3{  
    public final static String ENCODING="UTF-8";   
    //加密   
    public static String encoded(String data) throws UnsupportedEncodingException {  
//    	byte[] b=Base64.encodeBase64(binaryData)(data);
        byte[] b=Base64.encodeBase64(data.getBytes(ENCODING));  
        return new String(b,ENCODING);  
    }  
    //解密   
    public static String decode(String data) throws UnsupportedEncodingException{  
        byte[] b=Base64.decodeBase64(data.getBytes(ENCODING));  
        return new String(b,ENCODING);  
    }  
}  
public class test07 {
	 public static void main(String[] args) throws UnsupportedEncodingException {  
	        String str="some string";  
	        //加密該字串   
	        String encodedString=UrlBase64Coder3.encoded(str);  
	        System.out.println(encodedString);  
	        //解密該字串   
	        String decodedString=UrlBase64Coder3.decode(encodedString);  
	        System.out.println(decodedString);  
	    }  
}

輸出結果

      c29tZSBzdHJpbmc=
      some string

參考文章:

http://www.cnblogs.com/reonlyrun/archive/2006/12/29/640991.html

http://blog.csdn.net/huangyunzeng2008/article/details/6563711

相關文章