1. 程式人生 > >AES加密逐句分析、解密、md5

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

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 {           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);       }   }