使用Java中的Bouncy Castle进行AES加密

时间:2013-12-30 21:13:25

标签: java encryption aes bouncycastle

我有这个简单的AES加密代码:

public static void main(String[] args) throws Exception
{
    byte[]        input = new byte[] {
                      0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
                      (byte)0x88, (byte)0x99, (byte)0xaa, (byte)0xbb,
                      (byte)0xcc, (byte)0xdd, (byte)0xee, (byte)0xff };
    byte[]        keyBytes = new byte[] {
                      0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
                      0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
                      0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17 };

    SecretKeySpec key = new SecretKeySpec(keyBytes, "AES");

    Cipher        cipher = Cipher.getInstance("AES/ECB/NoPadding", "BC");

    System.out.println("input text : " + Utils.toHex(input));

    // encryption pass

    byte[] cipherText = new byte[input.length];

    cipher.init(Cipher.ENCRYPT_MODE, key);

    int ctLength = cipher.update(input, 0, input.length, cipherText, 0);

    ctLength += cipher.doFinal(cipherText, ctLength);

    System.out.println("cipher text: " + Utils.toHex(cipherText)
                                                 + " bytes: " + ctLength);

    // decryption pass

    byte[] plainText = new byte[ctLength];

    cipher.init(Cipher.DECRYPT_MODE, key);

    int ptLength = cipher.update(cipherText, 0, ctLength, plainText, 0);

    ptLength += cipher.doFinal(plainText, ptLength);

    System.out.println("plain text : " + Utils.toHex(plainText)
                                                 + " bytes: " + ptLength);
}

我试图将这个void main分解为3个方法:keycreation(),encryption()和decryption(),但是我失败了因为encryption()方法返回2个值,byte [] cipher和int ctLength ... 那么有人可以帮我分解3种方法中的代码吗?

1 个答案:

答案 0 :(得分:3)

我建议将你的方法组织成这样的类。然后,对于具有相同密钥的每个加密/解密任务,您可以创建此类的对象并在其上调用方法。

class AESEncryption {

    byte[] keyBytes;
    Cipher cipher;
    SecretKeySpec key;

    public AESEncryption() {

        try {
            cipher = Cipher.getInstance("AES/ECB/NoPadding", "BC");
        } catch (NoSuchAlgorithmException | NoSuchProviderException | NoSuchPaddingException e) {
            System.out.println(e.getMessage());
        }
    }

    public void createKey(byte[] keyBytes) {
        this.keyBytes = keyBytes;
        key = new SecretKeySpec(keyBytes, "AES");
    }

    public byte[] encrypt(byte[] plainText) {
        try {
            cipher.init(Cipher.ENCRYPT_MODE, key);
            return cipher.doFinal(plainText);
        } catch (InvalidKeyException | IllegalBlockSizeException | BadPaddingException e) {
            System.out.println(e.getMessage());
            return null;
        }
    }
}

您可以创建一个对象并调用这样的方法。

    AESEncryption aes = new AESEncryption();

    // call this to create the key
    aes.createKey(keyBytes);

    // call this on encrypt button click
    byte[] encrypted = aes.encrypt(input);

    // call this on decrypt button click
    byte[] decrypted = aes.decrypt(encrypted);