java加密体系-AES

import java.util.Arrays;  
import javax.crypto.Cipher;  
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;  
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

import org.apache.shiro.codec.Hex;  
  
/** 
 * AES 算法 对称加密,密码学中的高级加密标准 2005年成为有效标准  
 * @author stone 
 * @date 2014-03-10 06:49:19 
 */  
public class AES {  
    static Cipher cipher;  
    static final String KEY_ALGORITHM = "AES";  
    static final String CIPHER_ALGORITHM_ECB = "AES/ECB/PKCS5Padding";  
    /* 
     *  
     */  
    static final String CIPHER_ALGORITHM_CBC = "AES/CBC/PKCS5Padding";  
    /*  
     * AES/CBC/NoPadding 要求 
     * 密钥必须是16位的;Initialization vector (IV) 必须是16位 
     * 待加密内容的长度必须是16的倍数,如果不是16的倍数,就会出如下异常: 
     * javax.crypto.IllegalBlockSizeException: Input length not multiple of 16 bytes 
     *  
     *  由于固定了位数,所以对于被加密数据有中文的, 加、解密不完整 
     *   
     *  可 以看到,在原始数据长度为16的整数n倍时,假如原始数据长度等于16*n,则使用NoPadding时加密后数据长度等于16*n, 
     *  其它情况下加密数据长 度等于16*(n+1)。在不足16的整数倍的情况下,假如原始数据长度等于16*n+m[其中m小于16], 
     *  除了NoPadding填充之外的任何方 式,加密数据长度都等于16*(n+1). 
     */  
    static final String CIPHER_ALGORITHM_CBC_NoPadding = "AES/CBC/NoPadding";   
      
    static SecretKey secretKey;  
          
    public static void main(String[] args) throws Exception {  
        //method1("a*jal)k32J8czx囙国为国宽");  
        //method2("a*jal)k32J8czx囙国为国宽");  
       // method3("a*jal)k32J8czx囙国为国宽");  
          
       // method4("123456781234囙为国宽");// length = 16  
       // method4("12345678abcdefgh");// length = 16  
       testAES("qwertyu");   
    }  
      
    /** 
     * 使用AES 算法 加密,默认模式  AES/ECB 
     */  
    static void method1(String str) throws Exception {  
        cipher = Cipher.getInstance(KEY_ALGORITHM);  
        //KeyGenerator 生成aes算法密钥  
        secretKey = KeyGenerator.getInstance(KEY_ALGORITHM).generateKey();  
        System.out.println("服务器端生成密钥的为:" + secretKey.getEncoded());  
        byte[] keyBytes = secretKey.getEncoded();
        
        
        //客户端通过密钥进行加密数据
        secretKey = new SecretKeySpec(keyBytes, KEY_ALGORITHM);
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);//使用加密模式初始化 密钥  
        byte[] encrypt = cipher.doFinal(str.getBytes()); //按单部分操作加密或解密数据,或者结束一个多部分操作。  
        System.out.println("客户端加密后:" + Arrays.toString(encrypt));  
        
        //服务器端解密
        secretKey = new SecretKeySpec(keyBytes, KEY_ALGORITHM);
        cipher.init(Cipher.DECRYPT_MODE, secretKey);//使用解密模式初始化 密钥  
        byte[] decrypt = cipher.doFinal(encrypt);  
        System.out.println("服务器端解密后:" + new String(decrypt));  
          
    }  
    
    /**
     * 实战场景:客户端发送加密数据,服务端解密数据
     * @param content
     * @throws Exception
     */
    public static void testAES(String content) throws Exception {
    	//服务器端生成密钥
    	Cipher serverCiper = Cipher.getInstance("AES");
    	SecretKey serverSecretKey = KeyGenerator.getInstance("AES").generateKey();
    	byte[] keyBytes = serverSecretKey.getEncoded();
    	String keyStr = Hex.encodeToString(keyBytes);//密钥给到客户端
    	System.out.println("密钥为:"+keyStr);
    	
    	//客户端加密数据发送到服务端
    	SecretKey clientSecretKey = new SecretKeySpec(Hex.decode(keyStr), "AES");
    	Cipher clientCiper = Cipher.getInstance("AES");
    	clientCiper.init(Cipher.ENCRYPT_MODE, clientSecretKey);
    	String encryptStr = Hex.encodeToString(clientCiper.doFinal(content.getBytes()));
    	System.out.println("客户端加密后数据:"+encryptStr);
    	
    	//服务器接收到客户端数据进行解密
    	serverCiper.init(Cipher.DECRYPT_MODE, serverSecretKey);
    	byte[] decodeBytes = serverCiper.doFinal(Hex.decode(encryptStr));
        System.out.println("服务器解密后数据:"+new String(decodeBytes));
    	
    }
      
    /** 
     * 使用AES 算法 加密,默认模式 AES/ECB/PKCS5Padding 
     */  
    static void method2(String str) throws Exception {  
        cipher = Cipher.getInstance(CIPHER_ALGORITHM_ECB);  
        //KeyGenerator 生成aes算法密钥  
        secretKey = KeyGenerator.getInstance(KEY_ALGORITHM).generateKey();  
        System.out.println("密钥的长度为:" + secretKey.getEncoded().length);  
          
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);//使用加密模式初始化 密钥  
        byte[] encrypt = cipher.doFinal(str.getBytes()); //按单部分操作加密或解密数据,或者结束一个多部分操作。  
          
        System.out.println("method2-加密:" + Arrays.toString(encrypt));  
        cipher.init(Cipher.DECRYPT_MODE, secretKey);//使用解密模式初始化 密钥  
        byte[] decrypt = cipher.doFinal(encrypt);  
        System.out.println("method2-解密后:" + new String(decrypt));  
          
    }  
      
    static byte[] getIV() {  
        String iv = "1234567812345678"; //IV length: must be 16 bytes long  
        return iv.getBytes();  
    }  
      
    /** 
     * 使用AES 算法 加密,默认模式 AES/CBC/PKCS5Padding 
     */  
    static void method3(String str) throws Exception {  
        cipher = Cipher.getInstance(CIPHER_ALGORITHM_CBC);  
        //KeyGenerator 生成aes算法密钥  
        secretKey = KeyGenerator.getInstance(KEY_ALGORITHM).generateKey();  
        System.out.println("密钥的长度为:" + secretKey.getEncoded().length);  
          
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, new IvParameterSpec(getIV()));//使用加密模式初始化 密钥  
        byte[] encrypt = cipher.doFinal(str.getBytes()); //按单部分操作加密或解密数据,或者结束一个多部分操作。  
          
        System.out.println("method3-加密:" + Arrays.toString(encrypt));  
        cipher.init(Cipher.DECRYPT_MODE, secretKey, new IvParameterSpec(getIV()));//使用解密模式初始化 密钥  
        byte[] decrypt = cipher.doFinal(encrypt);  
        System.out.println("method3-解密后:" + new String(decrypt));  
          
    }  
      
    /** 
     * 使用AES 算法 加密,默认模式 AES/CBC/NoPadding  参见上面对于这种mode的数据限制 
     */  
    static void method4(String str) throws Exception {  
        cipher = Cipher.getInstance(CIPHER_ALGORITHM_CBC_NoPadding);  
        //KeyGenerator 生成aes算法密钥  
        secretKey = KeyGenerator.getInstance(KEY_ALGORITHM).generateKey();  
        System.out.println("密钥的长度为:" + secretKey.getEncoded().length);  
          
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, new IvParameterSpec(getIV()));//使用加密模式初始化 密钥  
        byte[] encrypt = cipher.doFinal(str.getBytes(), 0, str.length()); //按单部分操作加密或解密数据,或者结束一个多部分操作。  
          
        System.out.println("method4-加密:" + Arrays.toString(encrypt));  
        cipher.init(Cipher.DECRYPT_MODE, secretKey, new IvParameterSpec(getIV()));//使用解密模式初始化 密钥  
        byte[] decrypt = cipher.doFinal(encrypt);  
          
        System.out.println("method4-解密后:" + new String(decrypt));  
          
    }  
      
}  

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值