I have the following problem. I use this code to encrypt a sample text in C#, and want to decrypt it in java. I use the following java code.
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));
I obviously use the same IV and KEY values above as in the C# sample. The above java code runs on an android device, and the encrypted binary file is the SAMPLE.txt on it’s sdcard.
The problem is I don’t get the correct data after decrypting it. Can anyone tell me what I’m doing wrong?
Thanks.
There are a few problems here:
read()will read everything – you’re not actually using the value ofiReadlaterIt’s hard to know which of those is causing the problem.
I would strongly suggest that you use a
CipherInputStreamto wrap yourFileInputStream, and then wrap anInputStreamReaderaround that, using the appropriate encoding. You could then use something like Guava’sCharStreams.toString()method to read everything from theInputStreamReaderinto a string.EDIT: As noted in comments, while all of these are potential problems, there’s also the matter of the code currently creating the
Cipherin encryption mode rather than decryption mode.