AES、Base64

import com.gs.utility.io.Transfer;

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.spec.SecretKeySpec;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;

/**
 * AES算法
 *
 * @author Guozheng
 * @version 0.0.1, 13-10-9, 下午7:59
 */
public final class AES implements Cryptographic {

    private Key key;

    private static final String KEY_ALGORITHM = "AES";

    private static final String CIPHER_ALGORITHM = "AES/ECB/PKCS5Padding";

    private int keyLength = 128;

    @Override
    public byte[] encrypt(byte[] plainText) throws Exception {
        return decode(plainText, Cipher.ENCRYPT_MODE);
    }

    @Override
    public byte[] decrypt(byte[] cipherText) throws Exception {
        return decode(cipherText, Cipher.DECRYPT_MODE);
    }

    private byte[] decode(byte[] bytes, int mode) throws Exception {
        //PKCS7Padding(BouncyCastle)
        //Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM, "BC");
        Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
        cipher.init(mode, this.key);
        return cipher.doFinal(bytes);
    }

    private void createKey(byte[] bytes) throws NoSuchAlgorithmException {
        KeyGenerator generator = KeyGenerator.getInstance(KEY_ALGORITHM);
        SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
        secureRandom.setSeed(bytes);
        generator.init(this.keyLength, secureRandom);
        this.key = new SecretKeySpec(generator.generateKey().getEncoded(), KEY_ALGORITHM);
    }

    public void setKeyFile(String path) throws IOException, NoSuchAlgorithmException {
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        Transfer.copy(new File(path), bos);
        bos.flush();
        bos.close();
        //
        createKey(bos.toByteArray());
    }

    public void setKeyText(String text) throws NoSuchAlgorithmException {
        createKey(text.getBytes());
    }

    public void setKeyBytes(byte[] bytes) throws NoSuchAlgorithmException {
        createKey(bytes);
    }

    public void setKeyLength(int keyLength) {
        this.keyLength = keyLength;
    }
}
public final class Base64 implements Cryptographic {
    /**
     * 内部加解密对象
     */
    private Cryptographic cryptography;

    public byte[] encrypt(byte[] plainText) throws Exception {
        if (this.cryptography != null) plainText = this.cryptography.encrypt(plainText);
        return org.apache.commons.codec.binary.Base64.encodeBase64(plainText);
    }

    public byte[] decrypt(byte[] cipherText) throws Exception {
        cipherText = org.apache.commons.codec.binary.Base64.decodeBase64(cipherText);
        if (this.cryptography != null) cipherText = this.cryptography.decrypt(cipherText);
        return cipherText;
    }

    public void setCryptography(Cryptographic cryptography) {
        this.cryptography = cryptography;
    }
}
public interface Cryptographic {
    /**
     * 加密
     *
     * @param plainText 明文消息
     * @return 密文消息
     * @throws Exception 加密中出现的异常
     */
    public abstract byte[] encrypt(byte[] plainText) throws Exception;

    /**
     * 解码
     *
     * @param cipherText 密文消息
     * @return 明文消息
     * @throws Exception 解码中出现的异常
     */
    public abstract byte[] decrypt(byte[] cipherText) throws Exception;

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值