久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

對(duì)稱加密算法

 posondlq 2012-09-14
DES
DES-Data Encryption Standard,即數(shù)據(jù)加密算法,。是IBM公司于1975年研究成功并公開發(fā)表的。DES算法的入口參數(shù)有三個(gè):Key,、Data,、Mode,。其中Key為8個(gè)字節(jié)共64位,是DES算法的工作密鑰;Data也為8個(gè)字節(jié)64位,是要被加密或被解密的數(shù)據(jù);Mode為DES的工作方式,有兩種:加密或解密,。
  DES算法把64位的明文輸入塊變?yōu)?4位的密文輸出塊,它所使用的密鑰也是64位。 

 
 


通過java代碼實(shí)現(xiàn)如下:Coder類見 單向加密算法
Java代碼 復(fù)制代碼 收藏代碼
  1. import java.security.Key;   
  2. import java.security.SecureRandom;   
  3.   
  4. import javax.crypto.Cipher;   
  5. import javax.crypto.KeyGenerator;   
  6. import javax.crypto.SecretKey;   
  7. import javax.crypto.SecretKeyFactory;   
  8. import javax.crypto.spec.DESKeySpec;   
  9.   
  10.   
  11. /**  
  12.  * DES安全編碼組件  
  13.  *   
  14.  * <pre>  
  15.  * 支持 DES,、DESede(TripleDES,就是3DES),、AES、Blowfish,、RC2,、RC4(ARCFOUR)  
  16.  * DES                  key size must be equal to 56  
  17.  * DESede(TripleDES)    key size must be equal to 112 or 168  
  18.  * AES                  key size must be equal to 128, 192 or 256,but 192 and 256 bits may not be available  
  19.  * Blowfish             key size must be multiple of 8, and can only range from 32 to 448 (inclusive)  
  20.  * RC2                  key size must be between 40 and 1024 bits  
  21.  * RC4(ARCFOUR)         key size must be between 40 and 1024 bits  
  22.  * 具體內(nèi)容 需要關(guān)注 JDK Document http://.../docs/technotes/guides/security/SunProviders.html  
  23.  * </pre>  
  24.  *   
  25.  * @author 梁棟  
  26.  * @version 1.0  
  27.  * @since 1.0  
  28.  */  
  29. public abstract class DESCoder extends Coder {   
  30.     /**  
  31.      * ALGORITHM 算法 <br>  
  32.      * 可替換為以下任意一種算法,同時(shí)key值的size相應(yīng)改變,。  
  33.      *   
  34.      * <pre>  
  35.      * DES                  key size must be equal to 56  
  36.      * DESede(TripleDES)    key size must be equal to 112 or 168  
  37.      * AES                  key size must be equal to 128, 192 or 256,but 192 and 256 bits may not be available  
  38.      * Blowfish             key size must be multiple of 8, and can only range from 32 to 448 (inclusive)  
  39.      * RC2                  key size must be between 40 and 1024 bits  
  40.      * RC4(ARCFOUR)         key size must be between 40 and 1024 bits  
  41.      * </pre>  
  42.      *   
  43.      * 在Key toKey(byte[] key)方法中使用下述代碼  
  44.      * <code>SecretKey secretKey = new SecretKeySpec(key, ALGORITHM);</code> 替換  
  45.      * <code>  
  46.      * DESKeySpec dks = new DESKeySpec(key);  
  47.      * SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);  
  48.      * SecretKey secretKey = keyFactory.generateSecret(dks);  
  49.      * </code>  
  50.      */  
  51.     public static final String ALGORITHM = "DES";   
  52.   
  53.     /**  
  54.      * 轉(zhuǎn)換密鑰<br>  
  55.      *   
  56.      * @param key  
  57.      * @return  
  58.      * @throws Exception  
  59.      */  
  60.     private static Key toKey(byte[] key) throws Exception {   
  61.         DESKeySpec dks = new DESKeySpec(key);   
  62.         SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);   
  63.         SecretKey secretKey = keyFactory.generateSecret(dks);   
  64.   
  65.         // 當(dāng)使用其他對(duì)稱加密算法時(shí),,如AES、Blowfish等算法時(shí),,用下述代碼替換上述三行代碼   
  66.         // SecretKey secretKey = new SecretKeySpec(key, ALGORITHM);   
  67.   
  68.         return secretKey;   
  69.     }   
  70.   
  71.     /**  
  72.      * 解密  
  73.      *   
  74.      * @param data  
  75.      * @param key  
  76.      * @return  
  77.      * @throws Exception  
  78.      */  
  79.     public static byte[] decrypt(byte[] data, String key) throws Exception {   
  80.         Key k = toKey(decryptBASE64(key));   
  81.   
  82.         Cipher cipher = Cipher.getInstance(ALGORITHM);   
  83.         cipher.init(Cipher.DECRYPT_MODE, k);   
  84.   
  85.         return cipher.doFinal(data);   
  86.     }   
  87.   
  88.     /**  
  89.      * 加密  
  90.      *   
  91.      * @param data  
  92.      * @param key  
  93.      * @return  
  94.      * @throws Exception  
  95.      */  
  96.     public static byte[] encrypt(byte[] data, String key) throws Exception {   
  97.         Key k = toKey(decryptBASE64(key));   
  98.         Cipher cipher = Cipher.getInstance(ALGORITHM);   
  99.         cipher.init(Cipher.ENCRYPT_MODE, k);   
  100.   
  101.         return cipher.doFinal(data);   
  102.     }   
  103.   
  104.     /**  
  105.      * 生成密鑰  
  106.      *   
  107.      * @return  
  108.      * @throws Exception  
  109.      */  
  110.     public static String initKey() throws Exception {   
  111.         return initKey(null);   
  112.     }   
  113.   
  114.     /**  
  115.      * 生成密鑰  
  116.      *   
  117.      * @param seed  
  118.      * @return  
  119.      * @throws Exception  
  120.      */  
  121.     public static String initKey(String seed) throws Exception {   
  122.         SecureRandom secureRandom = null;   
  123.   
  124.         if (seed != null) {   
  125.             secureRandom = new SecureRandom(decryptBASE64(seed));   
  126.         } else {   
  127.             secureRandom = new SecureRandom();   
  128.         }   
  129.   
  130.         KeyGenerator kg = KeyGenerator.getInstance(ALGORITHM);   
  131.         kg.init(secureRandom);   
  132.   
  133.         SecretKey secretKey = kg.generateKey();   
  134.   
  135.         return encryptBASE64(secretKey.getEncoded());   
  136.     }   
  137. }  

延續(xù)上一個(gè)類的實(shí)現(xiàn),,我們通過MD5以及SHA對(duì)字符串加密生成密鑰,這是比較常見的密鑰生成方式,。
再給出一個(gè)測(cè)試類:
Java代碼 復(fù)制代碼 收藏代碼
  1. import static org.junit.Assert.*;   
  2.   
  3. import org.junit.Test;   
  4.   
  5. /**  
  6.  *   
  7.  * @author 梁棟  
  8.  * @version 1.0  
  9.  * @since 1.0  
  10.  */  
  11. public class DESCoderTest {   
  12.   
  13.     @Test  
  14.     public void test() throws Exception {   
  15.         String inputStr = "DES";   
  16.         String key = DESCoder.initKey();   
  17.         System.err.println("原文:\t" + inputStr);   
  18.   
  19.         System.err.println("密鑰:\t" + key);   
  20.   
  21.         byte[] inputData = inputStr.getBytes();   
  22.         inputData = DESCoder.encrypt(inputData, key);   
  23.   
  24.         System.err.println("加密后:\t" + DESCoder.encryptBASE64(inputData));   
  25.   
  26.         byte[] outputData = DESCoder.decrypt(inputData, key);   
  27.         String outputStr = new String(outputData);   
  28.   
  29.         System.err.println("解密后:\t" + outputStr);   
  30.   
  31.         assertEquals(inputStr, outputStr);   
  32.     }   
  33. }  

得到的輸出內(nèi)容如下:
Console代碼 復(fù)制代碼 收藏代碼
  1. 原文: DES   
  2. 密鑰: f3wEtRrV6q0=   
  3.   
  4. 加密后:    C6qe9oNIzRY=   
  5.   
  6. 解密后:    DES  

    由控制臺(tái)得到的輸出,,我們能夠比對(duì)加密、解密后結(jié)果一致,。這是一種簡(jiǎn)單的加密解密方式,,只有一個(gè)密鑰。
    其實(shí)DES有很多同胞兄弟,,如DESede(TripleDES),、AES、Blowfish,、RC2,、RC4(ARCFOUR)。這里就不過多闡述了,,大同小異,,只要換掉ALGORITHM換成對(duì)應(yīng)的值,同時(shí)做一個(gè)代碼替換SecretKey secretKey = new SecretKeySpec(key, ALGORITHM);就可以了,,此外就是密鑰長(zhǎng)度不同了,。

Java代碼 復(fù)制代碼 收藏代碼
  1. /**  
  2.  * DES          key size must be equal to 56  
  3.  * DESede(TripleDES) key size must be equal to 112 or 168  
  4.  * AES          key size must be equal to 128, 192 or 256,but 192 and 256 bits may not be available  
  5.  * Blowfish     key size must be multiple of 8, and can only range from 32 to 448 (inclusive)  
  6.  * RC2          key size must be between 40 and 1024 bits  
  7.  * RC4(ARCFOUR) key size must be between 40 and 1024 bits  
  8.  **/  

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多