【发布时间】: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