您的位置:首页 > 编程语言 > Java开发

AES加密逐句分析、解密、md5

2016-12-28 18:22 423 查看

AES加密逐句分析

1.KeyGenerator kgen = KeyGenerator.getInstance("AES"); //实例化一个用AES加密算法的密钥生成器 
2.kgen.init(128, new SecureRandom(password.getBytes())); //使用用户提供的password初始化此密钥生成器,使其具有确定的密钥大小128字节长。
3.SecretKey secretKey = kgen.generateKey(); //生成一个密钥。 
4.byte[] enCodeFormat = secretKey.getEncoded(); //返回基本编码格式的密钥,如果此密钥不支持编码,则返回 null。
5.SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES"); //根据给定的enCodeFormat字节数组构造一个用AES算法加密的密钥。
6.Cipher cipher = Cipher.getInstance("AES");// 创建密码器

7.cipher.init(Cipher.ENCRYPT_MODE, key);// 以加密的方式用密钥初始化此 Cipher。
8.byte[] byteContent = content.getBytes("utf-8");//使用给定的UTF-8编码将此String编码到byte序列,并将结果存储到byteContent 数组。
9.byte[] result = cipher.doFinal(byteContent); //按byteContent单部分操作加密指定的
return result; // 加密 返回加密过后的byteContent
建议:下载个jdk中文文档。自己对照就会了。
      /**      * AES加密      * @param content 待加密的内容      * @param encryptKey 加密密钥      * @return 加密后的byte[]      * @throws Exception      */      public static byte[] aesEncryptToBytes(String content, String encryptKey) throws Exception {          KeyGenerator kgen = KeyGenerator.getInstance("AES");         kgen.init(128, new SecureRandom(encryptKey.getBytes()));          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 aesEncrypt(String content, String encryptKey) throws Exception {          return base64Encode(aesEncryptToBytes(content, encryptKey));      }        /**      * AES解密      * @param encryptBytes 待解密的byte[]      * @param decryptKey 解密密钥      * @return 解密后的String      * @throws Exception      */      public static String aesDecryptByBytes(byte[] encryptBytes, String decryptKey) throws Exception {          KeyGenerator kgen = KeyGenerator.getInstance("AES");          kgen.init(128, new SecureRandom(decryptKey.getBytes()));          Cipher cipher = Cipher.getInstance("AES");          cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));          byte[] decryptBytes = cipher.doFinal(encryptBytes);          return new String(decryptBytes);      }        /**      * 将base 64 code AES解密      * @param encryptStr 待解密的base 64 code      * @param decryptKey 解密密钥      * @return 解密后的string      * @throws Exception      */      public static String aesDecrypt(String encryptStr, String decryptKey) throws Exception {          return StringUtils.isEmpty(encryptStr) ? null : aesDecryptByBytes(base64Decode(encryptStr), decryptKey);      }       /**      * 获取字符串md5值      * @param msg       * @return md5      * @throws Exception      */      public static byte[] md5(String msg) throws Exception {          return StringUtils.isEmpty(msg) ? null : md5(msg.getBytes());      }  String md532bit = DigestUtils.md5Hex(str);//apach的md5实现      /**      * 结合base64实现md5加密      * @param msg 待加密字符串      * @return 获取md5后转为base64      * @throws Exception      */      public static String md5Encrypt(String msg) throws Exception{          return StringUtils.isEmpty(msg) ? null : base64Encode(md5(msg));      }        /**      * 获取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();      }      /**      * 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 StringUtils.isEmpty(base64Code) ? null : new weblogic.utils.encoders.BASE64Decoder().decodeBuffer(base64Code);      }      /**      * 将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代表正数      }  

例子:

package com.cpic.auap.utils;import java.math.BigInteger;import java.security.MessageDigest;import java.security.SecureRandom;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;import javax.crypto.spec.SecretKeySpec;import com.thoughtworks.xstream.core.util.Base64Encoder;public class AESUtils {    public static void main(String[] args) throws Exception {          String content = "User_name=MIST_APPPAY&TradeCode=MOBILE_PAY&Input_charset=1&Plug_id=&Pluguser_no=&Policy_no=ASHH481ZH914B000091W&Order_id=1469785557939&Order_amount=0.01&Pay_amount=0.01&Order_time=20160729174557&Product_id=123123&Product_name=大地&Product_desc=水浇&Payer_name=张三&Payer_idType=0&Payer_id=&Payer_accName=&Payer_mobile=&Return_url=http%3A%2F%2Fwww.baidu.com&SpFlag=1&Platform_paynum=&B_company=&C_company=&attr1=116.228.131.212&attr2=wx56eb8b1ddc07ae69&attr3=oIVq0jj-lOkKktN5fcqBOq_qK3Qc&attr4=&attr5=&Sign_msg=2c3aec0af1d2dca3db9cb53e690ed5d8&formValue=http%3A%2F%2F10.191.82.29%3A8001%2Fpayplatform-payssl%2FmobilePay.action";          System.out.println("加密前:" + content);          String key = "12f23f4b1951d22624b2d2213e7552260513efffd7121e6f3f123ce3412d12df";          System.out.println("加密密钥和解密密钥:" + key);  //AES加密        String encrypt = aesEncrypt(content, key);          System.out.println("加密后:" + encrypt);  //AES解密        String decrypt = aesDecrypt(encrypt, key);          System.out.println("解密后:" + decrypt);      }    }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  aes md5 加密 Java