gpt4 book ai didi

java - 使用 Java 中的 Bouncy CaSTLe 进行 AES 加密

转载 作者:行者123 更新时间:2023-11-29 05:31:43 25 4
gpt4 key购买 nike

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

最佳答案

我建议将您的方法组织到这样的类中。然后对于每个使用相同 key 的加密/解密任务,您可以创建一个此类的对象并调用其方法。

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

关于java - 使用 Java 中的 Bouncy CaSTLe 进行 AES 加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20847679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com