mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-29 04:55:15 +00:00
9b8719e2d5
// FREEBIE
34 lines
832 B
Java
34 lines
832 B
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import java.io.FileDescriptor;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.security.MessageDigest;
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
public class FileUtils {
|
|
|
|
static {
|
|
System.loadLibrary("native-utils");
|
|
}
|
|
|
|
public static native int getFileDescriptorOwner(FileDescriptor fileDescriptor);
|
|
|
|
public static byte[] getFileDigest(FileInputStream fin) throws IOException {
|
|
try {
|
|
MessageDigest digest = MessageDigest.getInstance("SHA256");
|
|
|
|
byte[] buffer = new byte[4096];
|
|
int read = 0;
|
|
|
|
while ((read = fin.read(buffer, 0, buffer.length)) != -1) {
|
|
digest.update(buffer, 0, read);
|
|
}
|
|
|
|
return digest.digest();
|
|
} catch (NoSuchAlgorithmException e) {
|
|
throw new AssertionError(e);
|
|
}
|
|
}
|
|
}
|