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 : DcAESUtil |
* @author : ncc |
* create time : 2017-12-19 上午10:13:17 |
* @version : 1.0 |
* description : AES密码学中的高级加密标准(Advanced Encryption Standard,AES),又称 高级加密标准 |
* Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES, |
* 已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与 |
* 技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。 |
* 2006年,高级加密标准已然成为对称密钥加密中最流行的算法之一。 |
* 该算法为比利时密码学家Joan Daemen和Vincent Rijmen所设计,结合两位作者的名字, |
* 以Rijndael之命名之,投稿高级加密标准的甄选流程。(Rijdael的发音近于 "Rhinedoll"。) |
* @see : |
* ************************************************/ |
public class DcAESUtil { |
// KeyGenerator 提供对称密钥生成器的功能,支持各种算法 |
private KeyGenerator keygen; |
// SecretKey 负责保存对称密钥 |
private SecretKey deskey; |
// Cipher负责完成加密或解密工作 |
private Cipher c; |
// 该字节数组负责保存加密的结果 |
private byte [] cipherByte; |
public DcAESUtil() throws NoSuchAlgorithmException, NoSuchPaddingException { |
Security.addProvider( new com.sun.crypto.provider.SunJCE()); |
// 实例化支持DES算法的密钥生成器(算法名称命名需按规定,否则抛出异常) |
keygen = KeyGenerator.getInstance( "AES" ); |
// 生成密钥 |
deskey = keygen.generateKey(); |
// 生成Cipher对象,指定其支持的DES算法 |
c = Cipher.getInstance( "AES" ); |
} |
/* ******************************************** |
* 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 { |
DcAESUtil de = new DcAESUtil(); |
String msg = "欢迎光临得草之家!" ; |
byte [] encontent = de.Encrytor(msg); |
byte [] decontent = de.Decryptor(encontent); |
System.out.println( "明文是:" + msg); |
System.out.println( "加密后:" + new String(encontent)); |
System.out.println( "解密后:" + new String(decontent)); |
} |
} |