【Java】AesEcbCodec(AES_ECB加解密工具类)

Java AES_ECB加解密工具类

import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.Security;

import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.codec.binary.Hex;
import org.bouncycastle.jce.provider.BouncyCastleProvider;

public class AesEcbCodec {

    /**
     * <tt>Java</tt> 支持 <tt>PKCS5Padding</tt> 填充方式 <br>
     * <tt>BouncyCastle</tt> 支持 <tt>PKCS7Padding</tt> 填充方式
     */
    private static final String TRANSFORMATION = "AES/ECB/PKCS7Padding";
    
    private static final String ALGORITHM = "AES";

    static {
        Security.addProvider(new BouncyCastleProvider());
    }

    /**
     * 加密数据
     * 
     * @param data          待加密数据
     * @param key           密钥
     * @return 加密后的数据
     * @throws GeneralSecurityException 
     * */
    public static byte[] encrypt(byte[] data, byte[] key) throws GeneralSecurityException {
        // 实例化Cipher对象,它用于完成实际的加密操作
        Cipher cipher = Cipher.getInstance(TRANSFORMATION, BouncyCastleProvider.PROVIDER_NAME);
        // 初始化Cipher对象,设置为加密模式
        cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, ALGORITHM));
        // 执行加密操作。加密后的结果通常都会用Base64编码进行传输
        return cipher.doFinal(data);
    }

    /**
     * 加密数据 (charset="UTF-8")
     * 
     * @param data             待加密数据
     * @param base64Key        密钥 (base64)
     * @return 加密后的数据 (base64)
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String encrypt_base64(String data, String base64Key) 
            throws GeneralSecurityException, IOException {
        return encrypt_base64(data, base64Key, "UTF-8");
    }

    /**
     * 加密数据 (charset="UTF-8")
     * 
     * @param data             待加密数据
     * @param hexKey           密钥 (hex)
     * @return 加密后的数据 (hex)
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String encrypt_hex(String data, String hexKey) 
            throws GeneralSecurityException, IOException {
        return encrypt_hex(data, hexKey, "UTF-8");
    }

    /**
     * 加密数据
     * 
     * @param data              待加密数据
     * @param base64Key         密钥 (base64)
     * @param charset           字符集编码
     * @return 加密后的数据 (base64)
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String encrypt_base64(String data, String base64Key, String charset) 
            throws GeneralSecurityException, IOException {
        byte[] target = encrypt(data.getBytes(charset), decodeBase64(base64Key));
        return encodeBase64String(target);
    }

    /**
     * 加密数据
     * 
     * @param data          待加密数据
     * @param hexKey        密钥 (hex)
     * @param charset       字符集编码
     * @return 加密后的数据 (hex)
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String encrypt_hex(String data, String hexKey, String charset) 
            throws GeneralSecurityException, IOException {
        byte[] target = encrypt(data.getBytes(charset), decodeHex(hexKey));
        return encodeHexString(target);
    }

    /**
     * 解密数据
     * 
     * @param data          待解密数据
     * @param key           密钥
     * @return 解密后的数据
     * @throws GeneralSecurityException 
     * */
    public static byte[] decrypt(byte[] data, byte[] key) throws GeneralSecurityException {
        // 实例化Cipher对象,它用于完成实际的加密操作
        Cipher cipher = Cipher.getInstance(TRANSFORMATION, BouncyCastleProvider.PROVIDER_NAME);
        // 初始化Cipher对象,设置为解密模式
        cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(key, ALGORITHM));
        // 执行解密操作
        return cipher.doFinal(data);
    }

    /**
     * 解密数据 (charset="UTF-8")
     * 
     * @param base64Data          待解密数据 (base64)
     * @param base64Key           密钥
     * @return 解密后的数据
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String decrypt_base64(String base64Data, String base64Key) 
            throws GeneralSecurityException, IOException {
        return decrypt_base64(base64Data, base64Key, "UTF-8");
    }

    /**
     * 解密数据 (charset="UTF-8")
     * 
     * @param hexData          待解密数据 (hex)
     * @param hexKey           密钥 (hex)
     * @return 解密后的数据
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String decrypt_hex(String hexData, String hexKey) 
            throws GeneralSecurityException, IOException {
        return decrypt_hex(hexData, hexKey, "UTF-8");
    }

    /**
     * 解密数据
     * 
     * @param base64Data          待解密数据 (base64)
     * @param base64Key           密钥 (base64)
     * @param charset             字符集编码
     * @return 解密后的数据
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String decrypt_base64(String base64Data, String base64Key, String charset) 
            throws GeneralSecurityException, IOException {
        byte[] encrypt = decrypt(decodeBase64(base64Data), decodeBase64(base64Key));
        return new String(encrypt, charset);
    }

    /**
     * 解密数据
     * 
     * @param hexData          待解密数据 (hex)
     * @param hexKey           密钥 (hex)
     * @param charset          字符集编码
     * @return 解密后的数据
     * @throws GeneralSecurityException
     * @throws IOException
     */
    public static String decrypt_hex(String hexData, String hexKey, String charset) 
            throws GeneralSecurityException, IOException {
        byte[] encrypt = decrypt(decodeHex(hexData), decodeHex(hexKey));
        return new String(encrypt, charset);
    }

    // ============================================================================================

    /**
     * Converts a String representing hexadecimal values into an array of bytes of those same values. The
     * returned array will be half the length of the passed String, as it takes two characters to represent any given
     * byte. An exception is thrown if the passed String has an odd number of elements.
     *
     * @param data
     *            A String containing hexadecimal digits
     * @return A byte array containing binary data decoded from the supplied char array.
     * @throws IOException
     *             Thrown if an odd number or illegal of characters is supplied
     */
    public static byte[] decodeHex(String data) throws IOException {
        try {
            return Hex.decodeHex(data);
        } catch (DecoderException e) {
            throw new IOException(e.getMessage(), e.getCause());
        }
    }
    
    /**
     * Converts an array of bytes into a String representing the hexadecimal values of each byte in order. The returned
     * String will be double the length of the passed array, as it takes two characters to represent any given byte.
     *
     * @param data
     *            a byte[] to convert to Hex characters
     * @return A String containing upper-case hexadecimal characters
     */
    public static String encodeHexString(byte[] data) {
        return Hex.encodeHexString(data, false);
    }

    /**
     * Decodes a Base64 String into octets.
     * <p>
     * <b>Note:</b> this method seamlessly handles data encoded in URL-safe or normal mode.
     * </p>
     *
     * @param base64String
     *            String containing Base64 data
     * @return Array containing decoded data.
     */
    public static byte[] decodeBase64(String data) {
        return Base64.decodeBase64(data);
    }

    /**
     * Encodes binary data using the base64 algorithm but does not chunk the output.
     *
     * NOTE:  We changed the behaviour of this method from multi-line chunking (commons-codec-1.4) to
     * single-line non-chunking (commons-codec-1.5).
     *
     * @param binaryData
     *            binary data to encode
     * @return String containing Base64 characters.
     */
    public static String encodeBase64String(byte[] data) {
        return Base64.encodeBase64String(data);
    }

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值