我正在加密一些数据,然后通过网络发送,最后使用下面的类在Android设备上解密该数据。加密发生在java服务器上,然后解密发生在手机上。我在解密手机上的数据时遇到了这个错误,“javax.crypto.BadPaddingException:pad block corrupted”。我在计算机上运行单元测试时没有收到此错误。有没有想过为什么会这样?
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;
}
}
答案 0 :(得分:0)
我的猜测是两个平台正在为模式和/或填充使用不同的默认值。如果仅指定密码,则底层实现将为您选择模式和填充。
尝试在两端指定所需的确切密码/模式/填充:
Cipher.getInstance( “AES / ECB / PKCS5Padding”);
这只是一个例子。使用您想要的模式和填充。