我正在建立一个基于p2p网络的项目。我无法找到任何算法来计算torrent文件的哈希信息。 有人可以帮忙解决这个问题吗?
答案 0 :(得分:1)
您可以使用java.security.MessageDigest。检查以下程序,该程序计算MD5Sum / hash字节并将其转换为Hex String格式。
MessageDigest md5 = null;
byte[] buffer = new byte[1024];
int bytesRead = 0;
String md5ChkSumHex = null;
InputStream is = null;
String filePath = "D:/myFile.txt";
try
{
is = new FileInputStream(new File(filePath));
md5 = MessageDigest.getInstance("MD5");
try {
while ((bytesRead = is.read(buffer)) > 0) {
md5.update(buffer, 0, bytesRead);
}
} catch (IOException e) {
e.printStackTrace();
}
byte[] md5ChkSumBytes = md5.digest();
StringBuffer sb = new StringBuffer();
/*Convert to hex*/
for (int j = 0; j < md5ChkSumBytes.length; j++)
{
String hex = Integer.toHexString(
(md5ChkSumBytes[j] & 0xff | 0x100)).substring(1, 3);
sb.append(hex);
}
md5ChkSumHex = sb.toString();
} catch (Exception nsae) {
}
return md5ChkSumHex;
答案 1 :(得分:0)
有很多算法可以找到哈希值。其中MD5和SHA1是流行的算法。
在上面的帖子中,他提到了MD5 Hasing的用法。要执行SHA1哈希,请使用此post。