您的位置:首页 > 运维架构 > Tomcat

aes加密解密,tomcat不会乱码

2017-03-29 10:23 295 查看
package com.sendinfo.ebiz3.util;

import java.math.BigInteger;

import java.security.MessageDigest;

import java.security.NoSuchAlgorithmException;

import java.security.SecureRandom;

import javax.crypto.Cipher;

import javax.crypto.KeyGenerator;

import javax.crypto.spec.SecretKeySpec;

import com.sendinfo.common.lang.StringUtil;

import sun.misc.BASE64Decoder;

import sun.misc.BASE64Encoder;

public class AesUtil {
private static String encodeRules = "4D51F1A771412E2299B0EEA5F2E9C9F9";//sendinfo

public static void main(String[] args) throws Exception {  

        String content = "Aes加密";  

        System.out.println("加密前:" + content);  

  

        String key = encodeRules;  

        System.out.println("加密密钥和解密密钥:" + key);  

          

        String encrypt = aesEncode(content);  

        System.out.println("加密后:" + encrypt);  

          

        String decrypt = aesDecode(encrypt);  

        System.out.println("解密后:" + decrypt);  

    }
/** 

     * 将byte[]转为各种进制的字符串 

     * @param bytes byte[] 

     * @param radix 可以转换进制的范围,从Character.MIN_RADIX到Character.MAX_RADIX,超出范围后变为10进制 

     * @return 转换后的字符串 

     */  

    public static String binary(byte[] bytes, int radix){  

        return new BigInteger(1, bytes).toString(radix);// 这里的1代表正数  

    }  

      

    /** 

     * base 64 encode 

     * @param bytes 待编码的byte[] 

     * @return 编码后的base 64 code 

     */  

    public static String base64Encode(byte[] bytes){  

        return new BASE64Encoder().encode(bytes);  

    }  

      

    /** 

     * base 64 decode 

     * @param base64Code 待解码的base 64 code 

     * @return 解码后的byte[] 

     * @throws Exception 

     */  

    public static byte[] base64Decode(String base64Code) throws Exception{  

        return StringUtil.isEmpty(base64Code) ? null : new BASE64Decoder().decodeBuffer(base64Code);  

    }  

      

    /** 

     * 获取byte[]的md5值 

     * @param bytes byte[] 

     * @return md5 

     * @throws Exception 

     */  

    public static byte[] md5(byte[] bytes) throws Exception {  

        MessageDigest md = MessageDigest.getInstance("MD5");  

        md.update(bytes);  

          

        return md.digest();  

    }  

      

    /** 

     * 获取字符串md5值 

     * @param msg  

     * @return md5 

     * @throws Exception 

     */  

    public static byte[] md5(String msg) throws Exception {  

        return StringUtil.isEmpty(msg) ? null : md5(msg.getBytes());  

    }  

      

    /** 

     * 结合base64实现md5加密 

     * @param msg 待加密字符串 

     * @return 获取md5后转为base64 

     * @throws Exception 

     */  

    public static String md5Encrypt(String msg) throws Exception{  

        return StringUtil.isEmpty(msg) ? null : base64Encode(md5(msg));  

    }  

      

    /** 

     * AES加密 

     * @param content 待加密的内容 

     * @param encryptKey 加密密钥 

     * @return 加密后的byte[] 

     * @throws Exception 

     */  

    public static byte[] aesEncryptToBytes(String content, String encryptKey) throws Exception {  

        KeyGenerator kgen = KeyGenerator.getInstance("AES");  

        SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG"); 

        secureRandom.setSeed(encryptKey.getBytes());   

        kgen.init(128,secureRandom);  

  

        Cipher cipher = Cipher.getInstance("AES");  

        cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  

          

        return cipher.doFinal(content.getBytes("utf-8"));  

    }  

      

    /** 

     * AES加密为base 64 code 

     * @param content 待加密的内容 

     * @param encryptKey 加密密钥 

     * @return 加密后的base 64 code 

     * @throws Exception 

     */  

    public static String aesEncode(String content) {  

        try {

        System.out.println(content);

        System.out.println(base64Encode(aesEncryptToBytes(content, encodeRules)));
return base64Encode(aesEncryptToBytes(content, encodeRules));
} catch (Exception e) {

}  
return content;

    }  

      

    /** 

     * AES解密 

     * @param encryptBytes 待解密的byte[] 

     * @param decryptKey 解密密钥 

     * @return 解密后的String 

     * @throws Exception 

     */  

    public static String aesDecryptByBytes(byte[] encryptBytes, String decryptKey) {  

        try{

        KeyGenerator kgen = KeyGenerator.getInstance("AES");  

            SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG"); 

            secureRandom.setSeed(decryptKey.getBytes());   

            kgen.init(128,secureRandom); 

              

            Cipher cipher = Cipher.getInstance("AES");  

            cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  

            byte[] decryptBytes = cipher.doFinal(encryptBytes);  

             ///*************重点在这个String后面的UTF-8,加了以后,部署tomcat才不会乱码*****************///////////////

            return new String(decryptBytes,"UTF-8");  

        }catch(Exception e){

       

        }

        return null;

    }  

      

    /** 

     * 将base 64 code AES解密 

     * @param encryptStr 待解密的base 64 code 

     * @param decryptKey 解密密钥 

     * @return 解密后的string 

     * @throws Exception 

     */  

    public static String aesDecode(String encryptStr) {  

        try {

//         System.out.println(StringUtil.isEmpty(encryptStr) ? null : aesDecryptByBytes(base64Decode(encryptStr), encodeRules));
return StringUtil.isEmpty(encryptStr) ? null : aesDecryptByBytes(base64Decode(encryptStr), encodeRules);
} catch (Exception e) {

}
return null;

    }  

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息