首页 > 编程语言 > 详细

java非对称加密算法原理及应用

时间:2016-02-20 17:40:21      阅读:304      评论:0      收藏:0      [点我收藏+]

使用JDK的类 BASE64Decoder  BASE64Encoder

 

Java代码  技术分享

  1. package test;  

  2.   

  3. import sun.misc.BASE64Decoder;       

  4. import sun.misc.BASE64Encoder;       

  5.       

  6. /**    

  7.  * BASE64加密解密    

  8.  */      

  9. public class BASE64       

  10. {       

  11.       

  12.     /**     

  13.      * BASE64解密    

  14.    * @param key           

  15.      * @return           

  16.      * @throws Exception           

  17.      */                

  18.     public static byte[] decryptBASE64(String key) throws Exception {                 

  19.         return (new BASE64Decoder()).decodeBuffer(key);                 

  20.     }                 

  21.                     

  22.     /**          

  23.      * BASE64加密    

  24.    * @param key           

  25.      * @return           

  26.      * @throws Exception           

  27.      */                

  28.     public static String encryptBASE64(byte[] key) throws Exception {                 

  29.         return (new BASE64Encoder()).encodeBuffer(key);                 

  30.     }         

  31.            

  32.     public static void main(String[] args) throws Exception       

  33.     {       

  34.         String para = "{\"IdList1\": 1,\"IdList2\": [1,2,3,4,5,6,18],\"IdList3\": [1,2]}";  

  35.         String data = BASE64.encryptBASE64(para.getBytes());       

  36.         System.out.println("加密前:"+data);       

  37.                

  38.         byte[] byteArray = BASE64.decryptBASE64(data);       

  39.         System.out.println("解密后:"+new String(byteArray));       

  40.     }       

  41. }      

 

 

   使用Apache commons codec 类Base64获取【下载地址】  

 

Java代码  技术分享

  1. package test;  

  2.   

  3. import java.io.UnsupportedEncodingException;  

  4.   

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

  6.   

  7.   

  8.   

  9. public class Base64Util {  

  10.       

  11.     public static String encode(byte[] binaryData) throws UnsupportedEncodingException {  

  12.         return new String(Base64.encodeBase64(binaryData), "UTF-8");  

  13.     }  

  14.       

  15.     public static byte[] decode(String base64String) throws UnsupportedEncodingException {  

  16.         return Base64.decodeBase64(base64String.getBytes("UTF-8"));  

  17.     }  

  18.       

  19.       

  20.     public static void main(String[] args) throws UnsupportedEncodingException {  

  21.         String para = "{\"IdList1\": 1,\"IdList2\": [1,2,3,4,5,6,18],\"IdList3\": [1,2]}";  

  22.         String data = Base64Util.encode(para.getBytes());     

  23.         System.out.println("加密前:"+data);       

  24.                

  25.         byte[] byteArray = Base64Util.decode(data);  

  26.         System.out.println("解密后:"+new String(byteArray));    

  27.     }  

  28.   

  29.   

  30. }  

 


java非对称加密算法原理及应用

原文:http://11220684.blog.51cto.com/11210684/1743689

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!