RC4加密解密java演算法

l_serein發表於2012-06-09

原文傳送門:http://www.hlovey.cn/2009/11/02/java-rc4.html

有一個專案,需要解析一個使用者提供的rc4加密後的檔案,特意搜尋整理了一個java 版本的RC4加解密演算法。

[java] view plaincopy
  1. public static String HloveyRC4(String aInput,String aKey)   
  2.     {   
  3.         int[] iS = new int[256];   
  4.         byte[] iK = new byte[256];   
  5.           
  6.         for (int i=0;i<256;i++)   
  7.             iS[i]=i;   
  8.               
  9.         int j = 1;   
  10.           
  11.         for (short i= 0;i<256;i++)   
  12.         {   
  13.             iK[i]=(byte)aKey.charAt((i % aKey.length()));   
  14.         }   
  15.           
  16.         j=0;   
  17.           
  18.         for (int i=0;i<255;i++)   
  19.         {   
  20.             j=(j+iS[i]+iK[i]) % 256;   
  21.             int temp = iS[i];   
  22.             iS[i]=iS[j];   
  23.             iS[j]=temp;   
  24.         }   
  25.       
  26.       
  27.         int i=0;   
  28.         j=0;   
  29.         char[] iInputChar = aInput.toCharArray();   
  30.         char[] iOutputChar = new char[iInputChar.length];   
  31.         for(short x = 0;x<iInputChar.length;x++)   
  32.         {   
  33.             i = (i+1) % 256;   
  34.             j = (j+iS[i]) % 256;   
  35.             int temp = iS[i];   
  36.             iS[i]=iS[j];   
  37.             iS[j]=temp;   
  38.             int t = (iS[i]+(iS[j] % 256)) % 256;   
  39.             int iY = iS[t];   
  40.             char iCY = (char)iY;   
  41.             iOutputChar[x] =(char)( iInputChar[x] ^ iCY) ;      
  42.         }   
  43.           
  44.         return new String(iOutputChar);   
  45.                   
  46.     }  

加密和解密都用這一個方法。也就是說引數String aInput 可以傳一個明文,也可以傳一個加密後的字串,程式會自動的識別。然後執行加解密的響應操作。
使用例子如下:

[java] view plaincopy
  1. public static void main(String[] args) {      
  2.     String inputStr = "做個好男人";      
  3.     String key = "abcdefg";         
  4.       
  5.     String str = HloveyRC4(inputStr,key);  
  6.       
  7.     //列印加密後的字串      
  8.     System.out.println(str);    
  9.       
  10.     //列印解密後的字串      
  11.     System.out.println(HloveyRC4(str,key));    
  12. }   

 

相關文章