1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00
This commit is contained in:
Reinhard Pointner 2017-04-16 00:40:40 +08:00
parent e649147740
commit a442f32ae3

View File

@ -107,6 +107,10 @@ public final class VerificationUtilities {
return computeHash(file, HashType.SFV);
}
public static String sha256(File file) throws IOException, InterruptedException {
return computeHash(file, HashType.SHA256);
}
private VerificationUtilities() {
throw new UnsupportedOperationException();
}