mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
Unpack hashing fixed.
This commit is contained in:
parent
d6d002c2f6
commit
d21558e316
1 changed files with 6 additions and 5 deletions
|
@ -1,24 +1,25 @@
|
|||
package ru.gravit.utils.helper;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.net.URL;
|
||||
import java.nio.file.Path;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class UnpackHelper {
|
||||
@SuppressWarnings("ResultOfMethodCallIgnored")
|
||||
public static boolean unpack(URL resource, Path target) throws IOException {
|
||||
byte[] orig = IOHelper.read(resource);
|
||||
if (IOHelper.exists(target)) {
|
||||
if (matches(target, orig)) return false;
|
||||
if (matches(target, resource)) return false;
|
||||
}
|
||||
if (!IOHelper.exists(target))
|
||||
target.toFile().createNewFile();
|
||||
IOHelper.transfer(orig, target, false);
|
||||
try (InputStream in = IOHelper.newInput(resource)) {
|
||||
IOHelper.transfer(in, target, false);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private static boolean matches(Path target, byte[] in) {
|
||||
private static boolean matches(Path target, URL in) {
|
||||
try {
|
||||
return Arrays.equals(SecurityHelper.digest(SecurityHelper.DigestAlgorithm.SHA256, in),
|
||||
SecurityHelper.digest(SecurityHelper.DigestAlgorithm.SHA256, target));
|
||||
|
|
Loading…
Reference in a new issue