[Java] 3DES加密解密 →→→→→进入此内容的聊天室

来自 , 2020-10-24, 写在 Java, 查看 123 次.
URL http://www.code666.cn/view/8d420fa3
  1. package com.dc;
  2.  
  3. import java.security.InvalidKeyException;  
  4. import java.security.NoSuchAlgorithmException;  
  5. import java.security.Security;  
  6.  
  7. import javax.crypto.BadPaddingException;  
  8. import javax.crypto.Cipher;  
  9. import javax.crypto.IllegalBlockSizeException;  
  10. import javax.crypto.KeyGenerator;  
  11. import javax.crypto.NoSuchPaddingException;  
  12. import javax.crypto.SecretKey;  
  13.  
  14. /* ******************  类说明  *********************
  15.  * class       :  DcDES3Util
  16.  * @author     :  ncc
  17.  * create time :  2017-12-19 上午10:01:53
  18.  * @version    :  1.0  
  19.  * description :  3DES又称Triple DES,是DES加密算法的一种模式,它使用3条56位的密钥对3DES
  20.  * 数据进行三次加密。数据加密标准(DES)是美国的一种由来已久的加密标准,
  21.  * 它使用对称密钥加密法,并于1981年被ANSI组织规范为ANSI X.3.92。
  22.  * DES使用56位密钥和密码块的方法,而在密码块的方法中,文本被分成64位大小的
  23.  * 文本块然后再进行加密。比起最初的DES,3DES更为安全。 3DES(即Triple DES)是
  24.  * DES向AES过渡的加密算法(1999年,NIST将3-DES指定为过渡的加密标准),
  25.  * 是DES的一个更安全的变形。它以DES为基本模块,通过组合分组方法设计出分组加密算法,
  26.  * 其具体实现如下:
  27.  *  设Ek()和Dk()代表DES算法的加密和解密过程,K代表DES算法使用的密钥,P代表明文,C代表密文,
  28.  *  这样,3DES加密过程为:C=Ek3(Dk2(Ek1(P)))
  29.  *  3DES解密过程为:P=Dk1((EK2(Dk3(C)))
  30.  * @see        :                        
  31.  * ************************************************/  
  32. public class DcDES3Util {  
  33.  
  34.     // KeyGenerator 提供对称密钥生成器的功能,支持各种算法  
  35.     private KeyGenerator keygen;  
  36.     // SecretKey 负责保存对称密钥  
  37.     private SecretKey deskey;  
  38.     // Cipher负责完成加密或解密工作  
  39.     private Cipher c;  
  40.     // 该字节数组负责保存加密的结果  
  41.     private byte[] cipherByte;  
  42.  
  43.     /**
  44.      * @throws NoSuchAlgorithmException
  45.      * @throws NoSuchPaddingException
  46.      */
  47.     public DcDES3Util() throws NoSuchAlgorithmException, NoSuchPaddingException {  
  48.         Security.addProvider(new com.sun.crypto.provider.SunJCE());  
  49.         // 实例化支持DES算法的密钥生成器(算法名称命名需按规定,否则抛出异常)  
  50.         keygen = KeyGenerator.getInstance("DESede");  
  51.         // 生成密钥  
  52.         deskey = keygen.generateKey();  
  53.         // 生成Cipher对象,指定其支持的DES算法  
  54.         c = Cipher.getInstance("DESede");  
  55.     }  
  56.  
  57.     /* ********************************************
  58.      * method name   : Encrytor
  59.      * description   : 对字符串加密
  60.      * @return       : byte[]
  61.      * @param        : @param str
  62.      * @param        : @return
  63.      * @param        : @throws InvalidKeyException
  64.      * @param        : @throws IllegalBlockSizeException
  65.      * @param        : @throws BadPaddingException
  66.      * modified      : ncc ,  2017-12-19
  67.      * @see          :
  68.      * ********************************************/      
  69.     public byte[] Encrytor(String str) throws InvalidKeyException,  
  70.             IllegalBlockSizeException, BadPaddingException {  
  71.         // 根据密钥,对Cipher对象进行初始化,ENCRYPT_MODE表示加密模式  
  72.         c.init(Cipher.ENCRYPT_MODE, deskey);  
  73.         byte[] src = str.getBytes();  
  74.         // 加密,结果保存进cipherByte  
  75.         cipherByte = c.doFinal(src);  
  76.         return cipherByte;  
  77.     }  
  78.  
  79.     /* ********************************************
  80.      * method name   : Decryptor
  81.      * description   : 对字符串解密
  82.      * @return       : byte[]
  83.      * @param        : @param buff
  84.      * @param        : @return
  85.      * @param        : @throws InvalidKeyException
  86.      * @param        : @throws IllegalBlockSizeException
  87.      * @param        : @throws BadPaddingException
  88.      * modified      : ncc ,  2017-12-19
  89.      * @see          :
  90.      * ********************************************/      
  91.     public byte[] Decryptor(byte[] buff) throws InvalidKeyException,  
  92.             IllegalBlockSizeException, BadPaddingException {  
  93.         // 根据密钥,对Cipher对象进行初始化,DECRYPT_MODE表示加密模式  
  94.         c.init(Cipher.DECRYPT_MODE, deskey);  
  95.         cipherByte = c.doFinal(buff);  
  96.         return cipherByte;  
  97.     }  
  98.  
  99.     /**
  100.      * @param args
  101.      * @throws NoSuchPaddingException  
  102.      * @throws NoSuchAlgorithmException  
  103.      * @throws BadPaddingException  
  104.      * @throws IllegalBlockSizeException  
  105.      * @throws InvalidKeyException  
  106.      */  
  107.     public static void main(String[] args) throws Exception {  
  108.         DcDES3Util des3 = new DcDES3Util();  
  109.         String msg ="欢迎光临得草之家!";  
  110.         byte[] encontent = des3.Encrytor(msg);  
  111.         byte[] decontent = des3.Decryptor(encontent);  
  112.         System.out.println("明文是:" + msg);  
  113.         System.out.println("加密后:" + new String(encontent));  
  114.         System.out.println("解密后:" + new String(decontent));  
  115.  
  116.     }  
  117. }
  118.  

回复 "3DES加密解密"

这儿你可以回复上面这条便签

captcha