Java實(shí)現(xiàn)AES加密

  • AES加密為對稱加密算法瓮下,即加密和解密都使用同一個(gè)密鑰進(jìn)行记劈。

AES是分組加密,就是說它將明文分成固定的分組赫冬,對固定大小的分組加密的算法浓镜。

  • AES每次處理128位的輸入,但是一般的輸入都不止128位的輸入面殖,所以一般我們要選擇合適的模式竖哩。(即在編碼中選擇的模式)
    • 模式是將數(shù)據(jù)分組串起來從而使得任意數(shù)據(jù)都能被加密的算法
  • 填充: 填充的作用是在加密前將普通文本拓展到需要的長度,關(guān)鍵在于填充的數(shù)據(jù)能夠在解密后正確的移除脊僚。

AES加密Java實(shí)現(xiàn):

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;

public class AESUtils {
    private static final String ENCRY_ALGORITHM = "AES";

    /**
     * 加密算法/加密模式/填充類型
     * 本例采用AES加密,ECB加密模式遵绰,PKCS5Padding填充
     */
    private static final String CIPHER_MODE = "AES/ECB/PKCS5Padding";

    /**
     * 設(shè)置iv偏移量
     * 本例采用ECB加密模式辽幌,不需要設(shè)置iv偏移量
     */
    private static final String IV_ = null;

    /**
     * 設(shè)置加密字符集
     * 本例采用 UTF-8 字符集
     */
    private static final String CHARACTER = "UTF-8";

    /**
     * 設(shè)置加密密碼處理長度。
     * 不足此長度補(bǔ)0椿访;
     */
    private static final int PWD_SIZE = 16;


    /**
     * 密碼處理方法(將String轉(zhuǎn)換為byte[])
     * 如果加解密出問題乌企,
     * 請先查看本方法,排除密碼長度不足填充0字節(jié),導(dǎo)致密碼不一致
     *
     * @param password 待處理的密碼
     * @return
     * @throws UnsupportedEncodingException
     */
    private static byte[] pwdHandler(String password) throws UnsupportedEncodingException {
        byte[] data = null;
        if (password != null) {
            byte[] bytes = password.getBytes(CHARACTER);
            if (password.length() < PWD_SIZE) {
                System.arraycopy(bytes, 0, data = new byte[PWD_SIZE], 0, bytes.length);
            } else {
                data = bytes;
            }
        }
        return data;
    }


    /**
     * 原始加密
     *
     * @param clearTextBytes 明文字節(jié)數(shù)組成玫,待加密的字節(jié)數(shù)組
     * @param pwdBytes       加密密碼字節(jié)數(shù)組
     * @return 返回加密后的密文字節(jié)數(shù)組加酵,加密錯(cuò)誤返回null
     */
    public static byte[] encrypt(byte[] clearTextBytes, byte[] pwdBytes) {
        try {
            // 1 獲取加密密鑰
            SecretKeySpec keySpec = new SecretKeySpec(pwdBytes, ENCRY_ALGORITHM);

            // 2 獲取Cipher實(shí)例
            Cipher cipher = Cipher.getInstance(CIPHER_MODE);

            // 查看數(shù)據(jù)塊位數(shù) 默認(rèn)為16(byte) * 8 =128 bit
//            System.out.println("數(shù)據(jù)塊位數(shù)(byte):" + cipher.getBlockSize());

            // 3 初始化Cipher實(shí)例拳喻。設(shè)置執(zhí)行模式以及加密密鑰
            cipher.init(Cipher.ENCRYPT_MODE, keySpec);

            // 4 執(zhí)行
            byte[] cipherTextBytes = cipher.doFinal(clearTextBytes);

            // 5 返回密文字符集
            return cipherTextBytes;

        } catch (NoSuchPaddingException e) {
            e.printStackTrace();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (BadPaddingException e) {
            e.printStackTrace();
        } catch (IllegalBlockSizeException e) {
            e.printStackTrace();
        } catch (InvalidKeyException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }


    public static byte[] decrypt(byte[] cipherTextBytes, byte[] pwdBytes) {

        try {
            // 1 獲取解密密鑰
            SecretKeySpec keySpec = new SecretKeySpec(pwdBytes, ENCRY_ALGORITHM);

            // 2 獲取Cipher實(shí)例
            Cipher cipher = Cipher.getInstance(CIPHER_MODE);

            // 查看數(shù)據(jù)塊位數(shù) 默認(rèn)為16(byte) * 8 =128 bit
//            System.out.println("數(shù)據(jù)塊位數(shù)(byte):" + cipher.getBlockSize());

            // 3 初始化Cipher實(shí)例。設(shè)置執(zhí)行模式以及加密密鑰
            cipher.init(Cipher.DECRYPT_MODE, keySpec);

            // 4 執(zhí)行
            byte[] clearTextBytes = cipher.doFinal(cipherTextBytes);

            // 5 返回明文字符集
            return clearTextBytes;

        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (InvalidKeyException e) {
            e.printStackTrace();
        } catch (NoSuchPaddingException e) {
            e.printStackTrace();
        } catch (BadPaddingException e) {
            e.printStackTrace();
        } catch (IllegalBlockSizeException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        // 解密錯(cuò)誤 返回null
        return null;
    }

    //======================>BASE64<======================

    /**
     * BASE64加密
     *
     * @param clearText 明文猪腕,待加密的內(nèi)容
     * @param password  密碼冗澈,加密的密碼
     * @return 返回密文,加密后得到的內(nèi)容陋葡。加密錯(cuò)誤返回null
     */
    public static String encryptBase64(String clearText, String password) {
        try {
            // 1 獲取加密密文字節(jié)數(shù)組
            byte[] cipherTextBytes = encrypt(clearText.getBytes(CHARACTER), pwdHandler(password));

            // 2 對密文字節(jié)數(shù)組進(jìn)行BASE64 encoder 得到 BASE6輸出的密文
            BASE64Encoder base64Encoder = new BASE64Encoder();
            String cipherText = base64Encoder.encode(cipherTextBytes);

            // 3 返回BASE64輸出的密文
            return cipherText;
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        // 加密錯(cuò)誤 返回null
        return null;
    }


    /**
     * BASE64解密
     *
     * @param cipherText 密文亚亲,帶解密的內(nèi)容
     * @param password   密碼,解密的密碼
     * @return 返回明文腐缤,解密后得到的內(nèi)容捌归。解密錯(cuò)誤返回null
     */
    public static String decryptBase64(String cipherText, String password) {
        try {
            // 1 對 BASE64輸出的密文進(jìn)行BASE64 decodebuffer 得到密文字節(jié)數(shù)組
            BASE64Decoder base64Decoder = new BASE64Decoder();
            byte[] cipherTextBytes = base64Decoder.decodeBuffer(cipherText);

            // 2 對密文字節(jié)數(shù)組進(jìn)行解密 得到明文字節(jié)數(shù)組
            byte[] clearTextBytes = decrypt(cipherTextBytes, pwdHandler(password));

            // 3 根據(jù) CHARACTER 轉(zhuǎn)碼,返回明文字符串
            return new String(clearTextBytes, CHARACTER);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        // 解密錯(cuò)誤返回null
        return null;
    }


    /**
     * HEX加密
     *
     * @param clearText 明文岭粤,待加密的內(nèi)容
     * @param password  密碼惜索,加密的密碼
     * @return 返回密文,加密后得到的內(nèi)容剃浇。加密錯(cuò)誤返回null
     */
    public static String encryptHex(String clearText, String password) {
        try {
            // 1 獲取加密密文字節(jié)數(shù)組
            byte[] cipherTextBytes = encrypt(clearText.getBytes(CHARACTER), pwdHandler(password));

            // 2 對密文字節(jié)數(shù)組進(jìn)行 轉(zhuǎn)換為 HEX輸出密文
            String cipherText = byte2hex(cipherTextBytes);

            // 3 返回 HEX輸出密文
            return cipherText;
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        // 加密錯(cuò)誤返回null
        return null;
    }

    /**
     * HEX解密
     *
     * @param cipherText 密文门扇,帶解密的內(nèi)容
     * @param password   密碼,解密的密碼
     * @return 返回明文偿渡,解密后得到的內(nèi)容臼寄。解密錯(cuò)誤返回null
     */
    public static String decryptHex(String cipherText, String password) {
        try {
            // 1 將HEX輸出密文 轉(zhuǎn)為密文字節(jié)數(shù)組
            byte[] cipherTextBytes = hex2byte(cipherText);

            // 2 將密文字節(jié)數(shù)組進(jìn)行解密 得到明文字節(jié)數(shù)組
            byte[] clearTextBytes = decrypt(cipherTextBytes, pwdHandler(password));

            // 3 根據(jù) CHARACTER 轉(zhuǎn)碼,返回明文字符串
            return new String(clearTextBytes, CHARACTER);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        // 解密錯(cuò)誤返回null
        return null;
    }

    /*字節(jié)數(shù)組轉(zhuǎn)成16進(jìn)制字符串  */
    public static String byte2hex(byte[] bytes) { // 一個(gè)字節(jié)的數(shù)溜宽,
        StringBuffer sb = new StringBuffer(bytes.length * 2);
        String tmp = "";
        for (int n = 0; n < bytes.length; n++) {
            // 整數(shù)轉(zhuǎn)成十六進(jìn)制表示
            tmp = (java.lang.Integer.toHexString(bytes[n] & 0XFF));
            if (tmp.length() == 1) {
                sb.append("0");
            }
            sb.append(tmp);
        }
        return sb.toString().toUpperCase(); // 轉(zhuǎn)成大寫
    }

    /*將hex字符串轉(zhuǎn)換成字節(jié)數(shù)組 */
    private static byte[] hex2byte(String str) {
        if (str == null || str.length() < 2) {
            return new byte[0];
        }
        str = str.toLowerCase();
        int l = str.length() / 2;
        byte[] result = new byte[l];
        for (int i = 0; i < l; ++i) {
            String tmp = str.substring(2 * i, 2 * i + 2);
            result[i] = (byte) (Integer.parseInt(tmp, 16) & 0xFF);
        }
        return result;
    }

}

參考鏈接:AES模式和填充
【JAVA】AES加密 簡單實(shí)現(xiàn) AES-128/ECB/PKCS5Padding

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末吉拳,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子适揉,更是在濱河造成了極大的恐慌留攒,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,029評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件嫉嘀,死亡現(xiàn)場離奇詭異炼邀,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)剪侮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,395評論 3 385
  • 文/潘曉璐 我一進(jìn)店門拭宁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人瓣俯,你說我怎么就攤上這事杰标。” “怎么了彩匕?”我有些...
    開封第一講書人閱讀 157,570評論 0 348
  • 文/不壞的土叔 我叫張陵腔剂,是天一觀的道長。 經(jīng)常有香客問我驼仪,道長掸犬,這世上最難降的妖魔是什么袜漩? 我笑而不...
    開封第一講書人閱讀 56,535評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮湾碎,結(jié)果婚禮上宙攻,老公的妹妹穿的比我還像新娘。我一直安慰自己胜茧,他們只是感情好粘优,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,650評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著呻顽,像睡著了一般雹顺。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上廊遍,一...
    開封第一講書人閱讀 49,850評論 1 290
  • 那天嬉愧,我揣著相機(jī)與錄音,去河邊找鬼喉前。 笑死没酣,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的卵迂。 我是一名探鬼主播裕便,決...
    沈念sama閱讀 39,006評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼见咒!你這毒婦竟也來了偿衰?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,747評論 0 268
  • 序言:老撾萬榮一對情侶失蹤改览,失蹤者是張志新(化名)和其女友劉穎下翎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體宝当,經(jīng)...
    沈念sama閱讀 44,207評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡视事,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,536評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了庆揩。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片俐东。...
    茶點(diǎn)故事閱讀 38,683評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖盾鳞,靈堂內(nèi)的尸體忽然破棺而出犬性,到底是詐尸還是另有隱情,我是刑警寧澤腾仅,帶...
    沈念sama閱讀 34,342評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站套利,受9級特大地震影響推励,放射性物質(zhì)發(fā)生泄漏鹤耍。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,964評論 3 315
  • 文/蒙蒙 一验辞、第九天 我趴在偏房一處隱蔽的房頂上張望稿黄。 院中可真熱鬧,春花似錦跌造、人聲如沸杆怕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,772評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽陵珍。三九已至,卻和暖如春违施,著一層夾襖步出監(jiān)牢的瞬間互纯,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,004評論 1 266
  • 我被黑心中介騙來泰國打工磕蒲, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留留潦,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,401評論 2 360
  • 正文 我出身青樓辣往,卻偏偏與公主長得像兔院,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子站削,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,566評論 2 349

推薦閱讀更多精彩內(nèi)容