我最近开始开发一个开源反病毒软件,尽管哈希是用Aho-Corasick算法生成的。
我很想知道如何从可执行文件生成Aho-Corasick哈希,因为我几乎没有在互联网上找到有关此内容的任何信息
答案 0 :(得分:0)
在Java中:
private static String readFile(String path) throws IOException {
FileInputStream stream = new FileInputStream(new File(path));
try {
FileChannel fc = stream.getChannel();
MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
/* Instead of using default, pass in a decoder. */
return Charset.defaultCharset().decode(bb).toString();
}
finally {
stream.close();
}
}
然后你可以使用,以获取MD5哈希
byte[] bytesOfMessage = readFile("filepath").getBytes("UTF-8");
MessageDigest md = MessageDigest.getInstance("MD5");
String thedigest = Arrays.toString[md.digest(bytesOfMessage)];