whitespace cleanup

//FREEBIE

Closes #1779
This commit is contained in:
agrajaghh 2014-12-01 18:45:37 +01:00 committed by Moxie Marlinspike
parent b7badec752
commit 0b62cf372b
11 changed files with 76 additions and 76 deletions

View File

@ -100,7 +100,7 @@ public class DecryptingPartInputStream extends FileInputStream {
private int readFinal(byte[] buffer, int offset, int length) throws IOException { private int readFinal(byte[] buffer, int offset, int length) throws IOException {
try { try {
int flourish = cipher.doFinal(buffer, offset); int flourish = cipher.doFinal(buffer, offset);
// mac.update(buffer, offset, flourish); //mac.update(buffer, offset, flourish);
byte[] ourMac = mac.doFinal(); byte[] ourMac = mac.doFinal();
byte[] theirMac = new byte[mac.getMacLength()]; byte[] theirMac = new byte[mac.getMacLength()];