我有以下问题。我使用this代码加密C#中的示例文本,并希望在java中解密它。我使用以下java代码。
byte[] IV = { 65, 1, 2, 23, 4, 5, 6, 7, 32, 21, 10, 11, 12, 13, 84, 45 };
byte[] KEY = { 0, 42, 2, 54, 4, 45, 6, 7, 65, 9, 54, 11, 12, 13, 60, 15 };
byte baData[] = new byte[1024];
int iRead = 0;
SecretKeySpec key = new SecretKeySpec(KEY, "AES/CBC/PKCS5Padding");
Cipher cipher = Cipher.getInstance ("AES/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key, new IvParameterSpec(IV));
File file = new File("/sdcard", "SAMPLE.txt");
FileInputStream in = new FileInputStream(file);
iRead = in.read(baData, 0, baData.length);
String strResult = new String(cipher.doFinal(baData, 0, baData.length));
我显然使用与C#示例中相同的IV和KEY值。上面的java代码在android设备上运行,加密的二进制文件是sdcard上的SAMPLE.txt。 问题是我解密后没有得到正确的数据。谁能告诉我我做错了什么?
感谢。
答案 0 :(得分:6)
这里有一些问题:
read()
的一次调用会读取所有内容 - 您之后实际上并未使用iRead
的值很难知道哪一个导致了这个问题。
我强烈建议您使用CipherInputStream
来包裹FileInputStream
,然后使用适当的编码将InputStreamReader
包裹在其周围。然后,您可以使用Guava的CharStreams.toString()
方法之类的内容来读取InputStreamReader
到字符串中的所有内容。
编辑:正如评论中所述,虽然所有这些都是潜在问题,但目前在加密模式下创建Cipher
的代码也存在问题而不是解密模式。