【问题标题】:AES Encryption with Bouncy Castle in Java使用 Java 中的 Bouncy Castle 进行 AES 加密
【发布时间】:2013-12-30 21:13:24
【问题描述】:

我有这个简单的 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 种方法分解这段代码吗?

【问题讨论】:

  • 我不明白你想要什么,而且当你调用Cipher.final() 方法时,你的代码只是覆盖了cipherText 和plainText 数组,所以现在代码只是无意义的。
  • 只是我需要把这段代码分解成方法,每个方法都会被界面中的一个按钮调用……按钮是:创建密钥,加密按钮,解密按钮……创建key按钮调用第一个方法keycreation(),第二个..等

标签: java encryption aes bouncycastle


【解决方案1】:

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

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

【讨论】:

  • 谢谢你 bgamlath,但是当我导入解密文件进行解密时解密没有成功...请注意,当我立即加密和重新解密时解密成功..所以我的目标是导入任何文件用我的软件解密并解密。我们可以用 decrtion 方法做什么?
  • 如果加密中使用的密钥和加密方法相同,解密方法应该可以正常工作。
猜你喜欢
  • 2011-01-26
  • 2020-09-01
  • 2013-04-02
  • 2020-01-17
  • 1970-01-01
  • 1970-01-01
  • 2011-12-16
  • 2012-05-10
  • 1970-01-01
相关资源
最近更新 更多