javaweb 登陆aes-公钥加密

由于公司安全测试,要对重要信息进行加密传输,使得JavaAndroidiOS一致。

java代码

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

js代码

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>aes测试</title>  
  6.     <script type="text/javascript" src="aes.js"></script>  
  7.     <script type="text/javascript" src="../components/mode-ecb.js"></script>  
  8. </head>  
  9. <body>  
  10.       
  11. </body>  
  12.   
  13. <script type="text/javascript">  
  14.   
  15.       
  16.     function Encrypt(word){  
  17.          var key = CryptoJS.enc.Utf8.parse("abcdefgabcdefg12");   
  18.   
  19.          var srcs = CryptoJS.enc.Utf8.parse(word);  
  20.          var encrypted = CryptoJS.AES.encrypt(srcs, key, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7});  
  21.          return encrypted.toString();  
  22.     }  
  23.     function Decrypt(word){  
  24.          var key = CryptoJS.enc.Utf8.parse("abcdefgabcdefg12");   
  25.   
  26.          var decrypt = CryptoJS.AES.decrypt(word, key, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7});  
  27.          return CryptoJS.enc.Utf8.stringify(decrypt).toString();  
  28.     }  
  29.   
  30.     alert(Encrypt("我爱你"));  
  31.     alert(Decrypt(Encrypt("我爱你")))  
  32.   
  33. </script>  
  34. </html>  

注意点

  1. js中需要引入CryptoJS的架包,下载地址:点击跳转地址
  2. 使用aes时,js代码不要暴漏在外面,不然key会被拿到
  3. PKCS5Padding和PKCS7Padding的结果是一样


4
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值