Java 加密 AES 对称加密算法

来源:互联网 发布:广东卫视网络广播 编辑:程序博客网 时间:2024/05/01 06:46

AES】

一种对称加密算法,DES的取代者。

加密相关文章见:Java 加密解密 对称加密算法 非对称加密算法 MD5 BASE64 AES RSA


【代码】

代码比较多,有一部分非本文章内容代码,具体自己看吧。

[java] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. package com.uikoo9.util.encrypt;  
  2.   
  3. import java.math.BigInteger;  
  4. import java.security.MessageDigest;  
  5. import java.security.SecureRandom;  
  6.   
  7. import javax.crypto.Cipher;  
  8. import javax.crypto.KeyGenerator;  
  9. import javax.crypto.spec.SecretKeySpec;  
  10.   
  11. import sun.misc.BASE64Decoder;  
  12. import sun.misc.BASE64Encoder;  
  13.   
  14. import com.uikoo9.util.QStringUtil;  
  15.   
  16. /** 
  17.  * 编码工具类 
  18.  * 1.将byte[]转为各种进制的字符串 
  19.  * 2.base 64 encode 
  20.  * 3.base 64 decode 
  21.  * 4.获取byte[]的md5值 
  22.  * 5.获取字符串md5值 
  23.  * 6.结合base64实现md5加密 
  24.  * 7.AES加密 
  25.  * 8.AES加密为base 64 code 
  26.  * 9.AES解密 
  27.  * 10.将base 64 code AES解密 
  28.  * @author uikoo9 
  29.  * @version 0.0.7.20140601 
  30.  */  
  31. public class QEncodeUtil {  
  32.       
  33.     public static void main(String[] args) throws Exception {  
  34.         String content = "我爱你";  
  35.         System.out.println("加密前:" + content);  
  36.   
  37.         String key = "123456";  
  38.         System.out.println("加密密钥和解密密钥:" + key);  
  39.           
  40.         String encrypt = aesEncrypt(content, key);  
  41.         System.out.println("加密后:" + encrypt);  
  42.           
  43.         String decrypt = aesDecrypt(encrypt, key);  
  44.         System.out.println("解密后:" + decrypt);  
  45.     }  
  46.       
  47.     /** 
  48.      * 将byte[]转为各种进制的字符串 
  49.      * @param bytes byte[] 
  50.      * @param radix 可以转换进制的范围,从Character.MIN_RADIX到Character.MAX_RADIX,超出范围后变为10进制 
  51.      * @return 转换后的字符串 
  52.      */  
  53.     public static String binary(byte[] bytes, int radix){  
  54.         return new BigInteger(1, bytes).toString(radix);// 这里的1代表正数  
  55.     }  
  56.       
  57.     /** 
  58.      * base 64 encode 
  59.      * @param bytes 待编码的byte[] 
  60.      * @return 编码后的base 64 code 
  61.      */  
  62.     public static String base64Encode(byte[] bytes){  
  63.         return new BASE64Encoder().encode(bytes);  
  64.     }  
  65.       
  66.     /** 
  67.      * base 64 decode 
  68.      * @param base64Code 待解码的base 64 code 
  69.      * @return 解码后的byte[] 
  70.      * @throws Exception 
  71.      */  
  72.     public static byte[] base64Decode(String base64Code) throws Exception{  
  73.         return QStringUtil.isEmpty(base64Code) ? null : new BASE64Decoder().decodeBuffer(base64Code);  
  74.     }  
  75.       
  76.     /** 
  77.      * 获取byte[]的md5值 
  78.      * @param bytes byte[] 
  79.      * @return md5 
  80.      * @throws Exception 
  81.      */  
  82.     public static byte[] md5(byte[] bytes) throws Exception {  
  83.         MessageDigest md = MessageDigest.getInstance("MD5");  
  84.         md.update(bytes);  
  85.           
  86.         return md.digest();  
  87.     }  
  88.       
  89.     /** 
  90.      * 获取字符串md5值 
  91.      * @param msg  
  92.      * @return md5 
  93.      * @throws Exception 
  94.      */  
  95.     public static byte[] md5(String msg) throws Exception {  
  96.         return QStringUtil.isEmpty(msg) ? null : md5(msg.getBytes());  
  97.     }  
  98.       
  99.     /** 
  100.      * 结合base64实现md5加密 
  101.      * @param msg 待加密字符串 
  102.      * @return 获取md5后转为base64 
  103.      * @throws Exception 
  104.      */  
  105.     public static String md5Encrypt(String msg) throws Exception{  
  106.         return QStringUtil.isEmpty(msg) ? null : base64Encode(md5(msg));  
  107.     }  
  108.       
  109.     /** 
  110.      * AES加密 
  111.      * @param content 待加密的内容 
  112.      * @param encryptKey 加密密钥 
  113.      * @return 加密后的byte[] 
  114.      * @throws Exception 
  115.      */  
  116.     public static byte[] aesEncryptToBytes(String content, String encryptKey) throws Exception {  
  117.         KeyGenerator kgen = KeyGenerator.getInstance("AES");  
  118.         kgen.init(128new SecureRandom(encryptKey.getBytes()));  
  119.   
  120.         Cipher cipher = Cipher.getInstance("AES");  
  121.         cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  
  122.           
  123.         return cipher.doFinal(content.getBytes("utf-8"));  
  124.     }  
  125.       
  126.     /** 
  127.      * AES加密为base 64 code 
  128.      * @param content 待加密的内容 
  129.      * @param encryptKey 加密密钥 
  130.      * @return 加密后的base 64 code 
  131.      * @throws Exception 
  132.      */  
  133.     public static String aesEncrypt(String content, String encryptKey) throws Exception {  
  134.         return base64Encode(aesEncryptToBytes(content, encryptKey));  
  135.     }  
  136.       
  137.     /** 
  138.      * AES解密 
  139.      * @param encryptBytes 待解密的byte[] 
  140.      * @param decryptKey 解密密钥 
  141.      * @return 解密后的String 
  142.      * @throws Exception 
  143.      */  
  144.     public static String aesDecryptByBytes(byte[] encryptBytes, String decryptKey) throws Exception {  
  145.         KeyGenerator kgen = KeyGenerator.getInstance("AES");  
  146.         kgen.init(128new SecureRandom(decryptKey.getBytes()));  
  147.           
  148.         Cipher cipher = Cipher.getInstance("AES");  
  149.         cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  
  150.         byte[] decryptBytes = cipher.doFinal(encryptBytes);  
  151.           
  152.         return new String(decryptBytes);  
  153.     }  
  154.       
  155.     /** 
  156.      * 将base 64 code AES解密 
  157.      * @param encryptStr 待解密的base 64 code 
  158.      * @param decryptKey 解密密钥 
  159.      * @return 解密后的string 
  160.      * @throws Exception 
  161.      */  
  162.     public static String aesDecrypt(String encryptStr, String decryptKey) throws Exception {  
  163.         return QStringUtil.isEmpty(encryptStr) ? null : aesDecryptByBytes(base64Decode(encryptStr), decryptKey);  
  164.     }  
  165.       
  166. }  

【输出】

[java] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. 加密前:我爱你  
  2. 加密密钥和解密密钥:123456  
  3. 加密后:A63fa7DjAe3yYji44BTm1g==  
  4. 解密后:我爱你  
0 0