自寫AES加密解密工具類

来源:http://www.cnblogs.com/PJH-Forever/archive/2016/08/29/5820216.html
-Advertisement-
Play Games

此類主要用於加密與解密,採用128位ECB模式,PKCS5Padding填充補位。 可使用方法為加密返回二進位encryptBin(content, key)、加密返回十六進位encryptHex(content, key)、二進位內容解密decryptBin(content, key)、十六進位內 ...


此類主要用於加密與解密,採用128位ECB模式,PKCS5Padding填充補位。

可使用方法為加密返回二進位encryptBin(content, key)、加密返回十六進位encryptHex(content, key)、二進位內容解密decryptBin(content, key)、十六進位內容解密decryptHex(content, key)。

content是需要加密的字元串,key是密鑰,隨意一個字元串。

  1 package com.test;
  2 
  3 import java.io.UnsupportedEncodingException;
  4 import java.security.InvalidKeyException;
  5 import java.security.NoSuchAlgorithmException;
  6 import java.security.SecureRandom;
  7 
  8 import javax.crypto.BadPaddingException;
  9 import javax.crypto.Cipher;
 10 import javax.crypto.IllegalBlockSizeException;
 11 import javax.crypto.KeyGenerator;
 12 import javax.crypto.NoSuchPaddingException;
 13 import javax.crypto.SecretKey;
 14 import javax.crypto.spec.SecretKeySpec;
 15 
 16 import org.apache.commons.logging.Log;
 17 import org.apache.commons.logging.LogFactory;
 18 
 19 public class AESCode {
 20     
 21     private static final String algorithm = "AES";
 22     private static final String transformation = "AES/ECB/PKCS5Padding";
 23     private static final String charset = "utf-8";
 24     
 25     private static final Log _log = LogFactory.getLog(AESCode.class);
 26     
 27     /**
 28      * 獲取key 填充密匙 獲取加密的密匙數據
 29      * 
 30      * @paramString key
 31      * @return byte[] enCodeFormat;
 32      * @author panjianghong 2016-8-29
 33      * */
 34     private static byte[] getEnCodeFormat(String key){
 35 
 36         try {
 37             KeyGenerator kgen = KeyGenerator.getInstance("AES");
 38             kgen.init(128, new SecureRandom(key.getBytes()));
 39             SecretKey secretKey = kgen.generateKey();
 40             byte[] enCodeFormat = secretKey.getEncoded();
 41             return enCodeFormat;
 42         } catch (NoSuchAlgorithmException e) {
 43             _log.error("獲取密匙數據失敗!");
 44         } 
 45         return null;
 46     }
 47     
 48     
 49     
 50     /**
 51      * 獲取加密數據的二進位字元串數據
 52      * 
 53      * @param  content
 54      * @param  enCodeFormat
 55      * @return String 
 56      * @author panjianghong 2016-8-29
 57      * */
 58     public static String encryptBin(String content, String key){
 59         
 60         try {
 61             byte[] byteConten = encrypt(content, key);
 62             return byte2BinString(byteConten);
 63         } catch (Exception e) {
 64             _log.error("獲取二進位加密數據失敗!");
 65         }
 66         return null;
 67     }
 68     
 69     
 70     
 71     /**
 72      * 獲取加密數據的十六進位字元串數據
 73      * 
 74      * @param  content
 75      * @param  enCodeFormat
 76      * @return String 
 77      * @author panjianghong 2016-8-29
 78      * */
 79     public static String encryptHex(String content, String key){
 80         
 81         try {
 82             byte[] byteConten = encrypt(content, key);
 83             return byte2HexString(byteConten);
 84         } catch (Exception e) {
 85             _log.error("獲取十六進位加密數據失敗!");
 86         }
 87         return null;
 88     }
 89     
 90 
 91     /**
 92      * 獲取文件的加密數據
 93      * 返回加密數據的位元組數組 byte[] 
 94      * 
 95      * @param  content
 96      * @param  enCodeFormat
 97      * @return  byte[] byteResoult 
 98      * @author panjianghong 2016-8-29
 99      * */
100     private static byte[] encrypt(String content, String key){
101         
102         try {
103             SecretKeySpec secretyKey = new SecretKeySpec(getEnCodeFormat(key), algorithm);
104             Cipher cipher = Cipher.getInstance(transformation);
105             byte[] byteContent = content.getBytes(charset);
106             cipher.init(Cipher.ENCRYPT_MODE, secretyKey);
107             byte[] byteResoult = cipher.doFinal(byteContent);
108             return byteResoult;
109         } catch (InvalidKeyException e) {
110             _log.error("獲取加密數據的位元組數組失敗!");
111         } catch (NoSuchAlgorithmException e) {
112             _log.error("獲取加密數據的位元組數組失敗!");
113         } catch (NoSuchPaddingException e) {
114             _log.error("獲取加密數據的位元組數組失敗!");
115         } catch (UnsupportedEncodingException e) {
116             _log.error("獲取加密數據的位元組數組失敗!");
117         } catch (IllegalBlockSizeException e) {
118             _log.error("獲取加密數據的位元組數組失敗!");
119         } catch (BadPaddingException e) {
120             _log.error("獲取加密數據的位元組數組失敗!");
121         }
122         
123         return null;
124     }
125     
126     /**
127      * 以二進位字元串數據進行解密
128      * 
129      * @param  content
130      * @param  enCodeFormat
131      * @return  String
132      * @author panjianghong 2016-8-29
133      * */
134     
135     public static String decryptBin(String binContent, String key){
136         
137         try {
138             SecretKeySpec secretyKey = new SecretKeySpec(getEnCodeFormat(key), algorithm);
139             Cipher cipher = Cipher.getInstance(transformation);
140             cipher.init(Cipher.DECRYPT_MODE, secretyKey);
141             byte[] byteResoult = cipher.doFinal(binString2Byte(binContent));
142             try {
143                 return new String(byteResoult,"utf-8");
144             } catch (UnsupportedEncodingException e) {
145                 _log.error("解密二進位數據失敗!");
146                 return null;
147             }
148         } catch (InvalidKeyException e) {
149             _log.error("解密二進位數據失敗!");
150         } catch (NoSuchAlgorithmException e) {
151             _log.error("解密二進位數據失敗!");
152         } catch (NoSuchPaddingException e) {
153             _log.error("解密二進位數據失敗!");
154         } catch (IllegalBlockSizeException e) {
155             _log.error("解密二進位數據失敗!");
156         } catch (BadPaddingException e) {
157             _log.error("解密二進位數據失敗!");
158         }
159         
160         return null;
161     }
162     
163     /**
164      * 以十六進位字元串數據進行解密
165      * 
166      * @param  content
167      * @param  enCodeFormat
168      * @return  String
169      * @author panjianghong 2016-8-29
170      * */
171     public static String decryptHex(String binContent, String key){
172         
173         try {
174             SecretKeySpec secretyKey = new SecretKeySpec(getEnCodeFormat(key), algorithm);
175             Cipher cipher = Cipher.getInstance(transformation);
176             cipher.init(Cipher.DECRYPT_MODE, secretyKey);
177             byte[] byteResoult = cipher.doFinal(hexString2Byte(binContent));
178             try {
179                 return new String(byteResoult,"utf-8");
180             } catch (UnsupportedEncodingException e) {
181                 _log.error("解密十六進位數據失敗!");
182                 return null;
183             }
184         } catch (InvalidKeyException e) {
185             _log.error("解密十六進位數據失敗!");
186         } catch (NoSuchAlgorithmException e) {
187             _log.error("解密十六進位數據失敗!");
188         } catch (NoSuchPaddingException e) {
189             _log.error("解密十六進位數據失敗!");
190         } catch (IllegalBlockSizeException e) {
191             _log.error("解密十六進位數據失敗!");
192         } catch (BadPaddingException e) {
193             _log.error("解密十六進位數據失敗!");
194         }
195         
196         return null;
197     }
198     
199     
200     
201     
202     /**
203      * 位元組數組轉化成二進位數
204      * @param  content
205      * @return  string
206      * @author panjianghong 2016-8-29
207      * */
208     private static String byte2BinString(byte[] content){
209         if(null == content){
210             _log.error("需要轉換的參數為空!");
211             return null;
212         }
213         
214         return hexString2BinString(byte2HexString(content));
215     }    
216     
217     /**
218      * 位元組數組轉化成十六進位數的小寫形式
219      * @param  content
220      * @return  string
221      * @author panjianghong 2016-8-29
222      * */
223     private static String byte2HexString(byte[] content){
224         if(null == content){
225             _log.error("需要轉換的參數為空!");
226             return null;
227         }
228         
229         StringBuffer sb = new StringBuffer();
230         for (int i = 0; i < content.length; i++) {
231             String hex = Integer.toHexString(content[i] & 0xFF); 
232             if (hex.length() == 1) {
233                 hex = '0' + hex;
234             }
235             sb.append(hex.toLowerCase());
236         }
237         
238         return sb.toString();
239     }
240     
241     /**
242      * 十六進位數轉化成二進位數
243      * @param  content
244      * @return string
245      * @author panjianghong 2016-8-29
246      * */
247     private static String hexString2BinString(String content){
248         
249         if (null == content || content.length() % 2 != 0) {
250             _log.error("需要轉換的參數為空或者參數長度不是2的倍數!");
251             return null; 
252         }
253              
254         StringBuffer bString = new StringBuffer();
255         StringBuffer tmp = new StringBuffer();  
256         for (int i = 0; i < content.length(); i++)  
257         {  
258             tmp.append("0000").append(Integer.toBinaryString(Integer.parseInt(content.substring(i, i + 1), 16)));  
259             bString.append(tmp.toString().substring(tmp.toString().length() - 4));  
260             tmp.delete(0, tmp.toString().length());
261         }  
262         return bString.toString(); 
263     }
264     /**
265      * 二進位數轉化成十六進位數
266      * @param  content
267      * @return string
268      * @author panjianghong 2016-8-29
269      * */
270     private static String BinString2hexString(String content){
271         
272         if (null == content || content.equals("") || content.length() % 8 != 0){
273             _log.error("需要轉換的參數為空或者參數長度不是8的倍數!");
274             return null;  
275         }
276             
277         StringBuffer tmp = new StringBuffer();  
278         int iTmp = 0;  
279         for (int i = 0; i < content.length(); i += 4)  
280         {  
281             iTmp = 0;  
282             for (int j = 0; j < 4; j++)  
283             {  
284                 iTmp += Integer.parseInt(content.substring(i + j, i + j + 1)) << (4 - j - 1);  
285             }  
286             tmp.append(Integer.toHexString(iTmp));  
287         }  
288         return tmp.toString();   
289     }
290         
291     
292     /**
293      * 16進位數轉化成位元組數組
294      * @param  content
295      * @return string
296      * @author panjianghong 2016-8-29
297      * */
298     private static byte[] hexString2Byte(String content){
299          if (content.length() < 1){
300              _log.error("需要轉換的參數為空或者參數長度<1!");
301              return null;
302          }
303                 
304         byte[] byteRresult = new byte[content.length() / 2];
305         for (int i = 0; i < content.length() / 2; i++) {
306             int high = Integer.parseInt(content.substring(i * 2, i * 2 + 1), 16);
307             int low = Integer.parseInt(content.substring(i * 2 + 1, i * 2 + 2), 16);
308             byteRresult[i] = (byte) (high * 16 + low);
309         }
310         return byteRresult;
311     }
312     
313     /**
314      * 二進位數轉化成位元組數組
315      * @param  content
316      * @return string
317      * @author panjianghong 2016-8-29
318      * */
319     private static byte[] binString2Byte(String content){
320          if (content.length() < 1){
321              _log.error("需要轉換的參數為空或者參數長度<1!");
322              return null;
323          }
324                 
325         return hexString2Byte(BinString2hexString(content));
326     }
327     
328 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 不啰嗦上代碼: 怎麼調用不用我說了吧,看返回的4個方法: addTranEvent,addAnimEvent,removeAnimEvent,setStyleAttribute ...
  • 第二版 (-1)寫在前面 本文不是要詳細說明Validation插件的使用,而是將滿足開發需求的代碼已最應該使用的方式寫出來,並附有詳細的註釋 想要瞭解更多,去jquery的官網,有最新,最全面的,後續可能會寫怎麼從jquery官網獲得信息的博文 (0)資源配置 官網的jar包: lib 有該插件所 ...
  • 如何簡單相容性的實現父元素是半透明背景色,而子元素不受影響。 相容所有瀏覽器的背景顏色半透明CSS代碼: 註意:startColorStr 和 endColorStr 的值,前兩位是十六進位的透明度,後面六位是十六進位的顏色。 其格式為 #AARRGGBB 。 AA 、 RR 、 GG 、 BB 為 ...
  • 工具: Visual Studio 2015 update 3 Asp.Net Core 1.0 1 準備工作 申請微信公眾平臺介面測試帳號,申請網址:(http://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login)。申請介面測試號無需公 ...
  • 在 UWP 的開發過程中,我們可能需要提供多種交互方式,例如滑鼠、鍵盤、觸摸、游戲手柄等,當然,語音也是一項很重要的功能。 眾所周知,在 Windows 中的許多個版本都包含有語音功能,特別是在 Windows 10 上,Cortana(小娜)更是非常智能。同時,對於開發者而言,我們也能非常方便的在 ...
  • 為什麼現在有非常多的聰明人都在致力於互聯網? 最近在讀埃隆·馬斯克傳記,他說「我認為現在有非常多的聰明人都在致力於互聯網」。 仔細一想,好像真的是這樣的。 我問了自己一個問題:如果你不敲代碼了,你能做什麼? 答案令人極其恐怖。嚇得我趕緊又去寫了一句 system.out.print("Hello W ...
  • python phpbb3 2016年8月30日 04:50:48 codegay phpbb3是國外一個開源的PHP論壇,python phpbb3這個項目是用python3實現很多對phpbb3論壇操作的方法,比如登錄,發貼,刪貼之類的操作。 從時間上看作者是4年前寫的項目,不過從代碼上看貌似大 ...
  • 接上一節課,我們專門新建了一個godconfig類,設置了兩個屬性prj_name(項目名),prj_author(作者),然後我們獲取標準輸入(stdin)把結果保存在了類裡面。 好吧,這節課的名字比較奇葩-我得了”懶癌”,假如我們忘記寫godconfig類的屬性,我們的程式還會運行嗎?答案是依舊 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...