gpt4 book ai didi

Java AES解密

转载 作者:行者123 更新时间:2023-12-01 15:14:53 26 4
gpt4 key购买 nike

我正在加密一些数据,然后通过网络发送它,最后使用下面的类在 Android 设备上解密该数据。加密发生在java服务器上,然后解密发生在手机上。但当我解密手机上的数据时,我收到此错误“javax.crypto.BadPaddingException:填充 block 已损坏”。当我在计算机上运行单元测试时,我没有收到此错误。有什么想法为什么会发生这种情况吗?

import java.security.*;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import sun.misc.*;

public class Encryption {
private static final String ALGORITHM = "AES";
private static final byte[] keyValue =
new byte[] { '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G' };

public static String encrypt(String valueToEnc) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(ALGORITHM);
c.init(Cipher.ENCRYPT_MODE, key);
byte[] encValue = c.doFinal(valueToEnc.getBytes());
String encryptedValue = new BASE64Encoder().encode(encValue);
return encryptedValue;
}

private static Key generateKey() throws Exception {
Key key = new SecretKeySpec(keyValue, ALGORITHM);
return key;
}

private static String decrypt(String encryptedValue) throws Exception {
Key key = generateKey();
Cipher c = Cipher.getInstance(ALGORITHM);
c.init(Cipher.DECRYPT_MODE, key);
byte[] decordedValue = new BASE64Decoder().decodeBuffer(encryptedValue);
byte[] decValue = c.doFinal(decordedValue);
String decryptedValue = new String(decValue);
return decryptedValue;
}
}

最佳答案

我的猜测是,这两个平台对模式和/或填充使用不同的默认值。如果您仅指定密码,底层实现将为您选择模式和填充。

尝试在两端指定您想要的确切密码/模式/填充:

Cipher.getInstance("AES/ECB/PKCS5Padding");

这只是一个例子。使用您想要的模式和填充。

关于Java AES解密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11762184/

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