mirror of
https://github.com/codestation/mhtools
synced 2024-11-10 05:44:17 +00:00
forgot to add the spacing....
This commit is contained in:
parent
63d1dde576
commit
d35277a035
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class Encrypter extends DecryptUtils implements DataKeys {
|
||||||
// encrypter works with 4-byte blocks, thx XanderXAJ for the hint :)
|
// encrypter works with 4-byte blocks, thx XanderXAJ for the hint :)
|
||||||
if(file_len % 4 > 0) {
|
if(file_len % 4 > 0) {
|
||||||
file_len += 4 - (file_len % 4);
|
file_len += 4 - (file_len % 4);
|
||||||
System.out.println("The file isn't 4-byte aligned, using " + file_len + "bytes as file size");
|
System.out.println("The file isn't 4-byte aligned, using " + file_len + " bytes as file size");
|
||||||
}
|
}
|
||||||
|
|
||||||
long table_len = (MHUtils.getOffset(file_number + 1) << 11) - (MHUtils.getOffset(file_number) << 11);
|
long table_len = (MHUtils.getOffset(file_number + 1) << 11) - (MHUtils.getOffset(file_number) << 11);
|
||||||
|
|
Loading…
Reference in a new issue