package com.dc; |
import java.security.InvalidKeyException; |
import java.security.NoSuchAlgorithmException; |
import java.security.Security; |
|
import javax.crypto.BadPaddingException; |
import javax.crypto.Cipher; |
import javax.crypto.IllegalBlockSizeException; |
import javax.crypto.KeyGenerator; |
import javax.crypto.NoSuchPaddingException; |
import javax.crypto.SecretKey; |
/* ****************** 类说明 ********************* |
* class : DcDES3Util |
* @author : ncc |
* create time : 2017-12-19 上午10:01:53 |
* @version : 1.0 |
* description : 3DES又称Triple DES,是DES加密算法的一种模式,它使用3条56位的密钥对3DES |
* 数据进行三次加密。数据加密标准(DES)是美国的一种由来已久的加密标准, |
* 它使用对称密钥加密法,并于1981年被ANSI组织规范为ANSI X.3.92。 |
* DES使用56位密钥和密码块的方法,而在密码块的方法中,文本被分成64位大小的 |
* 文本块然后再进行加密。比起最初的DES,3DES更为安全。 3DES(即Triple DES)是 |
* DES向AES过渡的加密算法(1999年,NIST将3-DES指定为过渡的加密标准), |
* 是DES的一个更安全的变形。它以DES为基本模块,通过组合分组方法设计出分组加密算法, |
* 其具体实现如下: |
* 设Ek()和Dk()代表DES算法的加密和解密过程,K代表DES算法使用的密钥,P代表明文,C代表密文, |
* 这样,3DES加密过程为:C=Ek3(Dk2(Ek1(P))) |
* 3DES解密过程为:P=Dk1((EK2(Dk3(C))) |
* @see : |
* ************************************************/ |
public class DcDES3Util { |
|
// KeyGenerator 提供对称密钥生成器的功能,支持各种算法 |
private KeyGenerator keygen; |
// SecretKey 负责保存对称密钥 |
private SecretKey deskey; |
// Cipher负责完成加密或解密工作 |
private Cipher c; |
// 该字节数组负责保存加密的结果 |
private byte [] cipherByte; |
|
/** |
* @throws NoSuchAlgorithmException |
* @throws NoSuchPaddingException |
*/ |
public DcDES3Util() throws NoSuchAlgorithmException, NoSuchPaddingException { |
Security.addProvider( new com.sun.crypto.provider.SunJCE()); |
// 实例化支持DES算法的密钥生成器(算法名称命名需按规定,否则抛出异常) |
keygen = KeyGenerator.getInstance( "DESede" ); |
// 生成密钥 |
deskey = keygen.generateKey(); |
// 生成Cipher对象,指定其支持的DES算法 |
c = Cipher.getInstance( "DESede" ); |
} |
|
/* ******************************************** |
* method name : Encrytor |
* description : 对字符串加密 |
* @return : byte[] |
* @param : @param str |
* @param : @return |
* @param : @throws InvalidKeyException |
* @param : @throws IllegalBlockSizeException |
* @param : @throws BadPaddingException |
* modified : ncc , 2017-12-19 |
* @see : |
* ********************************************/ |
public byte [] Encrytor(String str) throws InvalidKeyException, |
IllegalBlockSizeException, BadPaddingException { |
// 根据密钥,对Cipher对象进行初始化,ENCRYPT_MODE表示加密模式 |
c.init(Cipher.ENCRYPT_MODE, deskey); |
byte [] src = str.getBytes(); |
// 加密,结果保存进cipherByte |
cipherByte = c.doFinal(src); |
return cipherByte; |
} |
|
/* ******************************************** |
* method name : Decryptor |
* description : 对字符串解密 |
* @return : byte[] |
* @param : @param buff |
* @param : @return |
* @param : @throws InvalidKeyException |
* @param : @throws IllegalBlockSizeException |
* @param : @throws BadPaddingException |
* modified : ncc , 2017-12-19 |
* @see : |
* ********************************************/ |
public byte [] Decryptor( byte [] buff) throws InvalidKeyException, |
IllegalBlockSizeException, BadPaddingException { |
// 根据密钥,对Cipher对象进行初始化,DECRYPT_MODE表示加密模式 |
c.init(Cipher.DECRYPT_MODE, deskey); |
cipherByte = c.doFinal(buff); |
return cipherByte; |
} |
|
/** |
* @param args |
* @throws NoSuchPaddingException |
* @throws NoSuchAlgorithmException |
* @throws BadPaddingException |
* @throws IllegalBlockSizeException |
* @throws InvalidKeyException |
*/ |
public static void main(String[] args) throws Exception { |
DcDES3Util des3 = new DcDES3Util(); |
String msg = "欢迎光临得草之家!" ; |
byte [] encontent = des3.Encrytor(msg); |
byte [] decontent = des3.Decryptor(encontent); |
System.out.println( "明文是:" + msg); |
System.out.println( "加密后:" + new String(encontent)); |
System.out.println( "解密后:" + new String(decontent)); |
|
} |
} |